Skip to content

Instantly share code, notes, and snippets.

@deconstructionalism
Created July 5, 2017 23:55
Show Gist options
  • Select an option

  • Save deconstructionalism/53af0177eedebebb995f0e37f544f519 to your computer and use it in GitHub Desktop.

Select an option

Save deconstructionalism/53af0177eedebebb995f0e37f544f519 to your computer and use it in GitHub Desktop.
.vimrc for Ubuntu
" allows indentation and syntax highlighting
filetype plugin indent on
syntax enable
" jk for Esc
:imap jk <Esc>
call plug#begin('~/.vim/plugged')
Plug 'ryym/vim-riot'
Plug 'ternjs/tern_for_vim', { 'do': 'npm install' }
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
let g:airline_theme='gruvbox'
set t_Co=256
:set laststatus=2
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'Xuyuanp/nerdtree-git-plugin'
map <C-T> <plug>NERDTreeTabsToggle<CR>
Plug 'morhetz/gruvbox'
set background=dark
Plug 'Shougo/neocomplete.vim'
call plug#end()
colorscheme gruvbox
let g:neocomplete#enable_at_startup = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment