Skip to content

Instantly share code, notes, and snippets.

@kidtronnix
Last active July 11, 2018 14:05
Show Gist options
  • Save kidtronnix/e12912bbeb49e0dd22b5 to your computer and use it in GitHub Desktop.
Save kidtronnix/e12912bbeb49e0dd22b5 to your computer and use it in GitHub Desktop.
vimrc
" Make menu pretty and nice
let g:netrw_banner = 0
let g:netrw_liststyle = 3
let g:netrw_browse_split = 4
let g:netrw_altv = 1
let g:netrw_winsize = 25
augroup ProjectDrawer
autocmd!
autocmd VimEnter * :Vexplore
augroup END
" Set spacing etc...
set tabstop=4
" go plugin
"call plug#begin()
"Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
"call plug#end()
"let g:go_fmt_command = "goimports"
""""""""""""""""""""""
" Settings "
""""""""""""""""""""""
set autoindent " Enabile Autoindent
set incsearch " Shows the match while typing
set hlsearch " Highlight found searches
set noerrorbells " No beeps
set noswapfile " Don't use swapfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment