git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Last active
May 27, 2020 13:51
-
-
Save mujahidk/434fa39edaaa992075a81d6943929ae3 to your computer and use it in GitHub Desktop.
VIM configuration
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 'vim-airline/vim-airline' | |
Plugin 'vim-airline/vim-airline-themes' | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" Brief help | |
" :PluginList - lists configured plugins | |
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | |
" :PluginSearch foo - searches for foo; append `!` to refresh local cache | |
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal | |
" | |
" see :h vundle for more details or wiki for FAQ | |
" Put your non-Plugin stuff after this line | |
" ------------------------------------------------------------------- | |
set rnu | |
set nu | |
set statusline=2 | |
set colorcolumn=81 | |
set cursorline | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment