diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-01-06 19:35:25 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-01-06 19:35:25 +0100 |
commit | 9d7d269e8e78f46ce9e2a79180314ecc64dc19c0 (patch) | |
tree | 3d4ef82ec10b73b1171a6638e42dc60bd1c1ee85 | |
parent | 4e7e3458d587d9a4aae59f53ec86f7545556308b (diff) |
nvim: fix plugins
-rw-r--r-- | .config/nvim/init.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 21b254f..59a9d03 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -161,7 +161,9 @@ else colorscheme industry endif +" indentline let g:indentLine_char = '¦' +let g:vim_json_syntax_conceal = 0 let g:netrw_liststyle=1 @@ -175,6 +177,9 @@ let g:nvim_tree_quit_on_open = 1 let g:nvim_tree_highlight_opened_files = 1 nnoremap <C-t> :NvimTreeToggle<CR> +" vim-move +let g:move_key_modifier = 'C' + " ------------ " MAPS " ----------- |