diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2023-10-15 01:27:19 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2023-10-15 01:27:19 +0300 |
commit | 3cbdc30c135060c05854d7bff1e892cd1c153d2e (patch) | |
tree | 022ef78acaab59fb18e7d00005947924a4159176 /.config/nvim/init.vim | |
parent | acb95dbd46d30b2ff2f1b2d09ebfae598f5df895 (diff) |
FIXED DOUBLE MONITOR ISSUES HORAAY
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r-- | .config/nvim/init.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index cca2f5f..58fa1d6 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -17,10 +17,14 @@ Plug 'https://github.com/tpope/vim-commentary' " comment and uncomment Plug 'https://github.com/rafi/awesome-vim-colorschemes' " themes, basically Plug 'https://github.com/ryanoasis/vim-devicons' " icons for some plugins????? Plug 'https://github.com/terryma/vim-multiple-cursors' " this is gonna be tough to learn... -Plug 'ycm-core/YouCompleteMe' " autocompletion (REQUIRES PYTHON3 VENV) +" Plug 'ycm-core/YouCompleteMe' " autocompletion (REQUIRES PYTHON3 VENV) +Plug 'neoclide/coc.nvim', {'branch': 'release'} " Language-server + +cmap w!! w !sudo tee % > /dev/null nnoremap <C-f> :NERDTreeFocus<CR> + call plug#end() :colo evening |