-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-nvim.vim
More file actions
38 lines (34 loc) · 1.23 KB
/
config-nvim.vim
File metadata and controls
38 lines (34 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => PLUGINS
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" theme
set background=dark
call plug#begin('~/.vim/plugins-nvim')
source $HOME/.vim/config-common.vim
Plug 'folke/tokyonight.nvim'
autocmd VimEnter * colorscheme tokyonight
" custom config files
source $HOME/.vim/viml/toggle-terminal.nvim
source $HOME/.vim/viml/nvim-plenary.nvim
source $HOME/.vim/viml/swagger-preview.nvim
"source $HOME/.vim/viml/project.nvim
source $HOME/.vim/viml/telescope.nvim
source $HOME/.vim/viml/aider.vim
" disabled until can configure not to use premium requests from github
"source $HOME/.vim/viml/copilot-chat.nvim
source $HOME/.vim/viml/gitsigns.nvim
if $NVIM_CONFIG == 'coc'
source $HOME/.vim/viml/coc-nvim.vim
source $HOME/.vim/viml/copilot.vim
elseif $NVIM_CONFIG == 'cmp-efm'
source $HOME/.vim/viml/nvim-lsp-efm.nvim
source $HOME/.vim/viml/nvim-lsp-diagnostic-window.nvim
source $HOME/.vim/viml/nvim-cmp.nvim
else
" Default to cmp-builtin
source $HOME/.vim/viml/nvim-lsp-builtin.nvim
source $HOME/.vim/viml/nvim-lsp-diagnostic-window.nvim
source $HOME/.vim/viml/nvim-cmp.nvim
endif
call plug#end()
"}}}