Skip to content

Instantly share code, notes, and snippets.

@cecyc
Created June 25, 2017 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecyc/f0d3b2993fa8f13a1a7c5dd1aec2bef8 to your computer and use it in GitHub Desktop.
Save cecyc/f0d3b2993fa8f13a1a7c5dd1aec2bef8 to your computer and use it in GitHub Desktop.
My very simple vimrc
colorscheme desert
syntax enable "enable language specific syntax
set tabstop=4 "tabs are 4 spaces
set number "show line numbers on the right
set showcmd "show command at bottom
set wildmenu "show autocomplete options
set showmatch "highlight corresponding [{()}]
set laststatus=2 "always show status bar
set splitbelow "set split to bottom
set splitright "set split to right hand side
filetype indent on "turn on file specific indentation
"add pathogen plugins
execute pathogen#infect()
"Map NERDTree toggle to func + F2
map <F2> :NERDTreeToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment