Skip to content

Instantly share code, notes, and snippets.

@cdecl
Last active July 12, 2022 02:38
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 cdecl/11e3fc10e6e112fb7a9909593732fe91 to your computer and use it in GitHub Desktop.
Save cdecl/11e3fc10e6e112fb7a9909593732fe91 to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
Plug 'preservim/tagbar'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'vim-airline/vim-airline'
Plug 'frazrepo/vim-rainbow'
Plug 'arcticicestudio/nord-vim'
Plug 'tpope/vim-fugitive'
call plug#end()
nmap <F9> :NERDTreeToggle
nmap <F8> :TagbarToggle
let g:rainbow_active = 1
colorscheme nord
" vim config
set ts=4
set shiftwidth=4
set autoindent
set cindent
set nu
set hlsearch
set showmatch
set noswapfile
set ruler
set laststatus=2
" set mouse=a
if has("syntax")
syntax on
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment