Skip to content

Instantly share code, notes, and snippets.

@spsneo
Created June 6, 2018 08:29
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 spsneo/e7c00d694fd834a8655b494a0b301c6f to your computer and use it in GitHub Desktop.
Save spsneo/e7c00d694fd834a8655b494a0b301c6f to your computer and use it in GitHub Desktop.
Vimrc
syntax enable
set tabstop=2
set softtabstop=2
set expandtab
set number
set cursorline
filetype plugin indent on
set wildmenu
set lazyredraw
set showmatch
set incsearch
set hlsearch
nnoremap <leader><space> :nohlsearch<CR>
nnoremap gV `[v`]
set ignorecase
set smartcase
set shiftwidth=2
set smarttab
set history=10000
set undolevels=10000
set title
set visualbell
set noerrorbells
set pastetoggle=<F2>
nmap <silent> ,/ :nohlsearch<CR>
cmap w!! w !sudo tee % >/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment