Skip to content

Instantly share code, notes, and snippets.

@formidablae
Last active October 22, 2021 01:45
Show Gist options
  • Save formidablae/88e71c454c3510ff571cff89b025b891 to your computer and use it in GitHub Desktop.
Save formidablae/88e71c454c3510ff571cff89b025b891 to your computer and use it in GitHub Desktop.
.vimrc custom config for colorscheme, autostart session, tabs, window size and font
colorscheme slate
augroup sourcesession
autocmd!
autocmd VimEnter * nested
\ if !argc() && empty(v:this_session) && filereadable('Session.vim') |
\ source Session.vim |
\ endif
augroup END
set tabstop=4
set shiftwidth=4
set expandtab
set lines=90 // might not work correctly in terminal
set columns=210 // might not work correctly in terminal
set guifont=Ubuntu\ Mono\ 9
set history=1000
set window=51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment