added new config files

This commit is contained in:
piccihud
2023-09-02 13:54:58 +02:00
parent 7b026897fe
commit e36bdb347a
15 changed files with 43 additions and 35 deletions

View File

@@ -2,7 +2,12 @@
packadd! dracula
colorscheme dracula
" transparent bg
set completeopt=longest,menuone
setlocal complete+=k
set dictionary+=/home/davide/.vim/dict/dict_it.txt
set wrap
set linebreak
set expandtab
autocmd vimenter * hi Normal guibg=NONE ctermbg=NONE
set spell spelllang=it,en
syntax on " Enable type file detection. Vim will be able to try to detect the type of file in use.
@@ -30,23 +35,22 @@ set relativenumber
set clipboard=unnamedplus
set cursorline " Highlight cursor line underneath the cursor horizontally.
set nobackup " Do not save backup files.
set nowrap " Do not wrap lines. Allow long lines to extend as far as the line goes.
set incsearch " While searching though a file incrementally highlight matching characters as you type.
set ignorecase " Ignore capital letters during search.
set smartcase " This will allow you to search specifically for capital letters.
set showmode " Show the mode you are on the last line.
set showmatch " Show matching words during a search.
set hlsearch " Use highlighting when doing a search.
set wildmenu " Enable auto completion menu after pressing TAB.
set wildmode=list:longest " Make wildmenu behave like similar to Bash completion.
set foldenable
set foldmethod=indent
set ttyfast " Speed up scrolling in Vim
set encoding=UTF-8
set nobackup " Neoclide
set nowritebackup
"set nowritebackup
set updatetime=300
set signcolumn=yes
set smarttab "la tabulazione viene eseguita in automatico in modo intelligente
set tabstop=8 "imposta il valore della tabulazione (solitamente viene cosigliato 4 o 8)
" }}}
@@ -61,6 +65,8 @@ Plugin 'VundleVim/Vundle.vim'
"
" All of your Plugins must be added before the following line
"
"Plugin 'lifepillar/vim-mucomplete'
Plugin 'neoclide/coc.nvim', {'branch': 'release'}
Plugin 'itchyny/vim-cursorword'
Plugin 'preservim/nerdtree'
@@ -73,7 +79,6 @@ Plugin 'frazrepo/vim-rainbow'
Plugin 'mg979/vim-visual-multi', {'branch': 'master'}
Plugin 'itchyny/lightline.vim'
Plugin 'voldikss/vim-floaterm'
Bundle 'https://github.com/prashanthellina/follow-markdown-links'
Plugin 'mracos/mermaid.vim'
Plugin 'mzlogin/vim-markdown-toc'
Plugin 'bbrtj/vim-vorg-md'
@@ -111,8 +116,10 @@ augroup END
" PREDICTIVE ------------------------------------------------------------- {{{
"
let g:predictive#dict_path = expand($HOME . '/dict')
let g:predictive#disable_plugin = 0
" https://www.reddit.com/r/vim/comments/12qezjf/english_dictionary_autocompletion/?rdt=55684
"let g:mucomplete#enable_auto_at_startup = v:true
"let g:mucomplete#chains = #{default: ['dict']}
"set dictionary=/home/davide/.vim/dict/dict_it.txt
"
" }}}