Merge gitlab.com:Danacus/dotfiles-new
This commit is contained in:
commit
9b8e356a47
|
@ -2,7 +2,6 @@
|
||||||
set nocompatible " be iMproved, required
|
set nocompatible " be iMproved, required
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
|
||||||
|
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'vim-scripts/c.vim'
|
Plug 'vim-scripts/c.vim'
|
||||||
Plug 'arcticicestudio/nord-vim'
|
Plug 'arcticicestudio/nord-vim'
|
||||||
|
@ -41,7 +40,7 @@ Plug 'vim-pandoc/vim-pandoc'
|
||||||
Plug 'vim-pandoc/vim-pandoc-syntax'
|
Plug 'vim-pandoc/vim-pandoc-syntax'
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'tpope/vim-dadbod'
|
Plug 'tpope/vim-dadbod'
|
||||||
Plug 'lervag/vimtex'
|
"Plug 'lervag/vimtex'
|
||||||
Plug 'dpelle/vim-LanguageTool'
|
Plug 'dpelle/vim-LanguageTool'
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'tikhomirov/vim-glsl'
|
Plug 'tikhomirov/vim-glsl'
|
||||||
|
@ -264,5 +263,16 @@ nnoremap <C-K> <C-W><C-K>
|
||||||
nnoremap <C-L> <C-W><C-L>
|
nnoremap <C-L> <C-W><C-L>
|
||||||
nnoremap <C-H> <C-W><C-H>
|
nnoremap <C-H> <C-W><C-H>
|
||||||
|
|
||||||
|
" Disable arrow keys
|
||||||
|
map <Up> <Esc>
|
||||||
|
map <Down> <Esc>
|
||||||
|
map <Left> <Esc>
|
||||||
|
map <Right> <Esc>
|
||||||
|
|
||||||
|
imap <Up> <Esc>
|
||||||
|
imap <Down> <Esc>
|
||||||
|
imap <Left> <Esc>
|
||||||
|
imap <Right> <Esc>
|
||||||
|
|
||||||
set completeopt=menu,noinsert
|
set completeopt=menu,noinsert
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue