Skip to content

Instantly share code, notes, and snippets.

@npentrel
Created September 26, 2019 17:45
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 npentrel/a37c45994ca121acb45541c063b0c591 to your computer and use it in GitHub Desktop.
Save npentrel/a37c45994ca121acb45541c063b0c591 to your computer and use it in GitHub Desktop.
vimrc file
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