Last active
October 22, 2021 01:45
-
-
Save formidablae/88e71c454c3510ff571cff89b025b891 to your computer and use it in GitHub Desktop.
.vimrc custom config for colorscheme, autostart session, tabs, window size and font
This file contains 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
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