Skip to content

Instantly share code, notes, and snippets.

@gj1118
Created May 13, 2019 00:13
Show Gist options
  • Save gj1118/dce4213773ba5f5c8a58b61666faa2f8 to your computer and use it in GitHub Desktop.
Save gj1118/dce4213773ba5f5c8a58b61666faa2f8 to your computer and use it in GitHub Desktop.
my basic VIMRC file
set nobackup
set noswapfile
syntax enable
syntax on
set number
set runtimepath^=~/.vim/bundle/ctrlp.vim
set t_Co=256
call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'tpope/vim-fugitive'
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'thaerkh/vim-indentguides'
Plug 'scrooloose/nerdtree'
call plug#end()
let g:airline_powerline_fonts = 1
let g:airline_theme='dracula'
colorscheme dracula
let g:indentguides_spacechar = '┆'
let g:indentguides_tabchar = '|'
nmap <F6> :NERDTreeToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment