vimrc fix go nerdtree
All checks were successful
dotfiles/pipeline/head This commit looks good

This commit is contained in:
Johannes Rothe 2022-08-28 21:28:39 +02:00
parent 3019190ceb
commit 75d46d84d0
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
configuration {
theme: "/usr/share/rofi/themes/Arc-Dark.rasi";
font: "Roboto Mono 10";
}
@theme "/usr/share/rofi/themes/Arc-Dark.rasi"

View File

@ -28,6 +28,7 @@ augroup go
au FileType go nmap <F9> <Plug>(go-fmt)<Plug>(go-lint)
au FileType go nmap <F7> <Plug>(go-build)
au FileType go nmap <F8> <Plug>(go-run)
au FileType go nmap gd <Plug>(go-def)
augroup end
augroup sh
autocmd FileType sh :set tabstop=2 softtabstop=2 shiftwidth=2 expandtab autoindent fileformat=unix
@ -103,3 +104,6 @@ let g:python_highlight_func_calls = 0
" enable rainbow brackets
let g:rainbow_active = 1
" vim-go
let g:go_def_mapping_enabled = 0