File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,16 @@ if filereadable("/etc/vim/vimrc.local")
9
9
source /etc/ vim /vimrc.local
10
10
endif
11
11
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
+ " /*}}}*/
12
22
" Editor configs, small tweaks here and there "/*{{{*/
13
23
let mapleader = " ,"
14
24
set path += ** " Recursive path search
@@ -28,7 +38,6 @@ color molokai
28
38
let g: netrw_liststyle = 3
29
39
let g: netrw_banner = 0
30
40
" /*}}}*/
31
-
32
41
" Mappings
33
42
" For all FileType "/*{{{*/
34
43
@@ -175,7 +184,6 @@ nnoremap <leader>wt <C-w><S-t>
175
184
" /*}}}*/
176
185
177
186
" /*}}}*/
178
-
179
187
" For specific FileType "/*{{{*/
180
188
" Filetype Vim " /*{{{*/
181
189
augroup filetype_vim
You can’t perform that action at this time.
0 commit comments