Created
September 12, 2023 00:23
-
-
Save EarthMessenger/1d01c4df7cac29079a9e6d397a938bbc to your computer and use it in GitHub Desktop.
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
so $VIMRUNTIME/vimrc_example.vim | |
set autoindent | |
set smartindent | |
set autochdir | |
set timeoutlen=200 | |
set number | |
set relativenumber | |
set laststatus=2 | |
im fj <ESC> | |
im jf <ESC> | |
nn <C-s> :up<CR> | |
set foldmethod=marker | |
nn <Space> za | |
if has("gui_running") | |
set guifont=Sarasa\ Mono\ SC\ 11 | |
set guioptions-=e | |
set guioptions-=m | |
set guioptions-=r | |
set guioptions-=L | |
set guioptions-=t | |
set guioptions-=T | |
set guiligatures=<-=>\:_~/!*\|+ | |
endif | |
colorscheme gruvbox8 | |
let g:lightline = { | |
\ 'colorscheme': 'gruvbox8', | |
\ } | |
augroup TerminalOptions | |
autocmd! | |
autocmd TerminalOpen * { | |
setlocal nonumber | |
setlocal norelativenumber | |
} | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment