Skip to content

Instantly share code, notes, and snippets.

@rhinkle
Created January 16, 2020 05:47
Show Gist options
  • Save rhinkle/5f9cc585972a5c9efaced06ee368016f to your computer and use it in GitHub Desktop.
Save rhinkle/5f9cc585972a5c9efaced06ee368016f to your computer and use it in GitHub Desktop.
Vim RC
" Basic Setup
set nocompatible
" Set Filename in bar
set laststatus=2
set statusline+=%F
filetype indent plugin on
syntax enable
" Fuzzy file finder
set path+=**
set wildmenu
set showcmd
set autoindent
set confirm
set visualbell
set cmdheight=2
" set number
" Use <F11> to toggle between 'past' and 'nopaste'
" set pasttoggle=<F11>
" Indent
set shiftwidth=4
set softtabstop=4
set expandtab
set ruler
set encoding=utf-8
" Solarized
set background=dark
colorscheme solarized
set t_Co=256
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment