Created
September 26, 2019 17:45
-
-
Save npentrel/a37c45994ca121acb45541c063b0c591 to your computer and use it in GitHub Desktop.
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 nocompatible " be iMproved, required | |
filetype off " required | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'git://git.wincent.com/command-t.git' | |
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | |
Plugin 'dracula/vim' | |
Plugin 'nightsense/seabird' | |
Plugin 'tomasiser/vim-code-dark' | |
Plugin 'Xuyuanp/nerdtree-git-plugin' | |
Plugin 'christoomey/vim-tmux-navigator' | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" To ignore plugin indent changes, instead use: | |
"filetype plugin on | |
" Put your non-Plugin stuff after this line | |
execute pathogen#infect() | |
" theme | |
" ---- | |
syntax on | |
" ---- | |
" End theme | |
" Airline | |
let g:airline_theme='bubblegum' | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline_powerline_fonts = 1 | |
" Always show statusline | |
" ------ | |
set laststatus=2 | |
" ------ | |
" Set line number | |
set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment