Skip to content

Instantly share code, notes, and snippets.

@kthy
Created May 12, 2022 08:13
Show Gist options
  • Save kthy/579ce8ed35cc66129712bbdb840d3818 to your computer and use it in GitHub Desktop.
Save kthy/579ce8ed35cc66129712bbdb840d3818 to your computer and use it in GitHub Desktop.
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