Created
May 13, 2019 00:13
-
-
Save gj1118/dce4213773ba5f5c8a58b61666faa2f8 to your computer and use it in GitHub Desktop.
my basic VIMRC file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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