Skip to content

Instantly share code, notes, and snippets.

@StenHigh
Last active May 17, 2019 18:53
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 StenHigh/7ce377f651acdfa9f82a0723b0d1697e to your computer and use it in GitHub Desktop.
Save StenHigh/7ce377f651acdfa9f82a0723b0d1697e to your computer and use it in GitHub Desktop.
syntax on
set number
set expandtab
set tabstop=4
set hlsearch
set incsearch

call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-fugitive'
"Plug 'vim-gitgutter'
Plug 'kien/ctrlp.vim'
Plug 'vim-airline/vim-airline'
"colourscheme
Plug 'morhetz/gruvbox'
colorscheme gruvbox
"set background=dark

call plug#end()

"mappings
map <C-n> :NERDTreeToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment