Skip to content

Instantly share code, notes, and snippets.

@turastory
Created December 27, 2018 07:56
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 turastory/f81a911dad2e49a189be8cd19f2381c6 to your computer and use it in GitHub Desktop.
Save turastory/f81a911dad2e49a189be8cd19f2381c6 to your computer and use it in GitHub Desktop.
.vimrc (in progress)
syntax on " Enable syntax highlighting
filetype plugin indent on " Enable file type based indentation.
set nu
set autoindent " Respect indentation when starting a new line.
set expandtab " Expand tabs to spaces.
set tabstop=4 " Number of spaces tab is counted for.
set shiftwidth=4 " Number of spaces to use for autoindent
set backspace=2 " Fix backspace behavior on most terminals.
colorscheme murphy " Change a color scheme.
packloadall " Load all plugins
silent! helptags ALL " Load all help pages
set foldmethod=indent " Fold by indents
set foldcolumn=2 " show fold info with column 2
set wildmenu " Enable enhanced tab autocomplete
set wildmode=list:longest,full " Complete till longest string, then open the wildmenu.
set hlsearch " Highlights the search patterns
set incsearch " dynamically move to the first match as I type
" Quick note:
" [something] to enable, no[something] to disable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment