Compare commits
2 commits
b91cbf4c72
...
33a366cc4a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
33a366cc4a | ||
![]() |
7de5fde929 |
3 changed files with 13 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -28,3 +28,6 @@
|
|||
[submodule "pack/plugins/start/vim-grepper"]
|
||||
path = pack/plugins/start/vim-grepper
|
||||
url = https://github.com/mhinz/vim-grepper.git
|
||||
[submodule "pack/plugins/start/vim-go"]
|
||||
path = pack/plugins/start/vim-go
|
||||
url = https://github.com/fatih/vim-go.git
|
||||
|
|
9
init.vim
9
init.vim
|
@ -30,6 +30,12 @@ set autoindent
|
|||
set path+=**
|
||||
set wildignore+=**/node_modules/**
|
||||
|
||||
" set netrw preferred style to tree
|
||||
let g:netrw_liststyle = 3
|
||||
|
||||
" remove netrw top banner
|
||||
let g:netrw_banner = 0
|
||||
|
||||
" ADDITIONAL COMMANDS
|
||||
|
||||
inoremap <S-tab> <C-d>
|
||||
|
@ -107,6 +113,9 @@ nnoremap <Leader>R :source ~/.config/nvim/init.vim<CR>
|
|||
" show Vim's true competitor with: Leader r c m
|
||||
nnoremap <Leader>rcm :!open https://youtu.be/jn40Ugz0vuk<CR><CR>
|
||||
|
||||
" open netrw in directory of current file
|
||||
nnoremap <Leader>e :Ex<CR>
|
||||
|
||||
" COLORSCHEME
|
||||
|
||||
" set colorscheme to onedark.im for nvim and airline
|
||||
|
|
1
pack/plugins/start/vim-go
Submodule
1
pack/plugins/start/vim-go
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit a61545f09cad6df2e7a4918cbd6981811f612ae9
|
Reference in a new issue