Created
May 12, 2022 08:13
-
-
Save kthy/579ce8ed35cc66129712bbdb840d3818 to your computer and use it in GitHub Desktop.
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
set nocompatible | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
set number | |
set nobackup | |
set cursorline | |
set visualbell | |
autocmd BufEnter *.* setlocal indentexpr= | |
" https://raw.githubusercontent.com/Lokaltog/vim-distinguished/develop/colors/distinguished.vim | |
" https://raw.githubusercontent.com/mhinz/vim-janah/master/colors/janah.vim | |
" colorscheme distinguished | |
colorscheme janah | |
" https://gist.github.com/romainl/9970697 | |
execute pathogen#infect() | |
filetype plugin indent on | |
syntax on | |
" Show ruler at 80 chars | |
execute "set colorcolumn=" . join(range(81,335), ',') | |
hi ColorColumn guibg=#262626 ctermbg=235 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment