-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
executable file
·28 lines (22 loc) · 750 Bytes
/
Copy path.vimrc
File metadata and controls
executable file
·28 lines (22 loc) · 750 Bytes
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
set nocompatible
behave xterm
filetype plugin indent on
syntax on
source $HOME/.vim/vimrc/filetypes.vim
source $HOME/.vim/vimrc/mappings.vim
source $HOME/.vim/vimrc/plugins.vim
source $HOME/.vim/vimrc/plugin_configs.vim
source $HOME/.vim/vimrc/which-key.vim
source $HOME/.vim/vimrc/settings.vim
source $HOME/.vim/vimrc/coc_configs.vim
let g:asmsyntax = 'nasm'
"let g:onedark_color_overrides = {"member": {"cterm" : 14},}
set termguicolors " set termguicolors
set makeprg=cmakedbg
" Source a local vimrc if it exists
if filereadable(expand("$HOME/.vimrc.local"))
source $HOME/.vimrc.local
endif
set updatetime=300
au CursorHold * sil call CocActionAsync('highlight')
au CursorHoldI * sil call CocActionAsync('showSignatureHelp')