Skip to content

Commit 42768d9

Browse files
committed
+ Install gdscript syntax highlight using vim-plug
1 parent c996c74 commit 42768d9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

vimrc

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ if filereadable("/etc/vim/vimrc.local")
99
source /etc/vim/vimrc.local
1010
endif
1111

12+
" Vim-plug/*{{{*/
13+
" Plugins will be downloaded under the specified directory.
14+
call plug#begin('~/.vim/plugged')
15+
16+
" Declare the list of plugins.
17+
Plug 'calviken/vim-gdscript3'
18+
19+
" List ends here. Plugins become visible to Vim after this call.
20+
call plug#end()
21+
"/*}}}*/
1222
" Editor configs, small tweaks here and there "/*{{{*/
1323
let mapleader = ","
1424
set path+=** " Recursive path search
@@ -28,7 +38,6 @@ color molokai
2838
let g:netrw_liststyle = 3
2939
let g:netrw_banner = 0
3040
"/*}}}*/
31-
3241
" Mappings
3342
" For all FileType "/*{{{*/
3443

@@ -175,7 +184,6 @@ nnoremap <leader>wt <C-w><S-t>
175184
"/*}}}*/
176185

177186
"/*}}}*/
178-
179187
" For specific FileType "/*{{{*/
180188
" Filetype Vim " /*{{{*/
181189
augroup filetype_vim

0 commit comments

Comments
 (0)