Update vim config

This commit is contained in:
ItsDrike 2021-05-24 14:14:26 +02:00
parent 2ab78bb6a2
commit 25babf331b
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -7,7 +7,7 @@ if ! filereadable(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/autolo
endif endif
" Vim-Plug (Plugins) " Vim-Plug (Plugins)
call plug#begin('~/.local/share/vim/plugged') call plug#begin(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/plugged"'))
Plug 'airblade/vim-gitgutter' " Shows Git diff Plug 'airblade/vim-gitgutter' " Shows Git diff
Plug 'preservim/nerdcommenter' " Language based comment syntax Plug 'preservim/nerdcommenter' " Language based comment syntax
Plug 'preservim/nerdtree' " File manager (nerdtree) Plug 'preservim/nerdtree' " File manager (nerdtree)
@ -16,13 +16,9 @@ Plug 'joshdick/onedark.vim' " OneDark theme
Plug 'ryanoasis/vim-devicons' " Icons for nerdtree and airline Plug 'ryanoasis/vim-devicons' " Icons for nerdtree and airline
Plug 'vim-airline/vim-airline' " AirLine statusline Plug 'vim-airline/vim-airline' " AirLine statusline
Plug 'vim-airline/vim-airline-themes' " AirLine statusline themes Plug 'vim-airline/vim-airline-themes' " AirLine statusline themes
Plug 'jiangmiao/auto-pairs' " Quote and bracket completion
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " Auto-completion [NVIM only] Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " Auto-completion [NVIM only]
Plug 'neomake/neomake' " Syntax checking Plug 'neomake/neomake' " Syntax checking
Plug 'zchee/deoplete-jedi' " Python jedi autocompletion Plug 'zchee/deoplete-jedi' " Python jedi autocompletion
Plug 'davidhalter/jedi-vim' " Python implementation check
Plug 'vim-python/python-syntax' " Autodetect python syntax
Plug 'PotatoesMaster/i3-vim-syntax' " Autodetect i3 config syntax
Plug 'wakatime/vim-wakatime' " Wakatime integration for coding stats Plug 'wakatime/vim-wakatime' " Wakatime integration for coding stats
call plug#end() call plug#end()
@ -73,12 +69,21 @@ noremap <silent> <C-Right> :vertical resize -3<CR>
noremap <silent> <C-Up> :resize +3<CR> noremap <silent> <C-Up> :resize +3<CR>
noremap <silent> <C-Down> :resize -3<CR> noremap <silent> <C-Down> :resize -3<CR>
" Spell-check set to <leader>o, 'o' for 'orthography'
map <leader>o :setlocal spell! spelllang=en_US<CR>
" Stop search highlight (until next search)
map <silent> <esc> :noh<CR>
" System clipboard interactions " System clipboard interactions
map <C-c> "+y map <C-c> "+y
vnoremap <C-v> "+p vnoremap <C-v> "+p
" Spell-check set to <leader>o, 'o' for 'orthography' " Unmap arrow keys in normal mode to remove bad habits
map <leader>o :setlocal spell! spelllang=en_US<CR> nnoremap <Down> <nop>
nnoremap <Left> <nop>
nnoremap <Right> <nop>
nnoremap <Up> <nop>
" User interface / Theme " User interface / Theme
colorscheme onedark colorscheme onedark
@ -113,10 +118,6 @@ call neomake#configure#automake('nrwi', 500)
" Requires: pip install pynvim " Requires: pip install pynvim
let g:deoplete#enable_at_startup = 1 let g:deoplete#enable_at_startup = 1
" Jedi-vim
let g:jedi#completions_enabled = 0 " disable completions, since we use deoplete
let g:jedi#use_splits_not_buffers = "right"
" NERDTree " NERDTree
map <C-n> :NERDTreeToggle<CR> map <C-n> :NERDTreeToggle<CR>
let g:NERDTreeDirArrowExpandable = '►' let g:NERDTreeDirArrowExpandable = '►'