Last active
July 11, 2018 14:05
-
-
Save kidtronnix/e12912bbeb49e0dd22b5 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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