diff options
author | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
commit | 1b5b78fdac6c8182f583d4875c621c6e6566182b (patch) | |
tree | 6224155cf9e129d47f0753a104594d8c46bb8de9 /init.vim | |
parent | 718b37578cca47c3bf25a6a4439f28322b4f46c9 (diff) |
fixed C-l in pydoc overriding my window move mapping, some toggle cammands still don't work, also fixed backticks not appearing
Diffstat (limited to 'init.vim')
-rw-r--r-- | init.vim | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -19,13 +19,21 @@ source $HOME/.config/nvim/modules/emmet.vim source $HOME/.config/nvim/modules/colorizer.vim source $HOME/.config/nvim/modules/rainbow.vim source $HOME/.config/nvim/modules/vim-which-key.vim +source $HOME/.config/nvim/modules/echodoc.vim " Special test file " source $HOME/.config/nvim/modules/test.vim +set conceallevel=0 "TODO" "change install script to install pyls in base and clone base instead" "npm i -g bash-language-server "npm install -g javascript-typescript-langserver +"fix ctrl+l in python +" fixed use :map to see what things are mapped to if behavior is wonky "install ripgrep" for gutentags to ignore .gitignore "install universal ctags" " TODO add this to script npm i -g bash-language-server +nnoremap <C-h> <C-w>h +nnoremap <C-j> <C-w>j +nnoremap <C-k> <C-w>k +nnoremap <C-l> <C-w>l |