Last active
October 11, 2017 06:46
-
-
Save shravankumar147/0f26c45d216f802de9f81250640d7fda to your computer and use it in GitHub Desktop.
vimrc_for_python
This file contains hidden or 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 exrc | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" ==== PLUGINS ==== | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'vim-scripts/L9' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'airblade/vim-gitgutter' | |
Plugin 'scrooloose/syntastic' | |
Plugin 'christoomey/vim-conflicted' | |
Plugin 'terryma/vim-multiple-cursors' | |
Plugin 'mattn/emmet-vim' | |
Plugin 'sjl/gundo.vim' | |
Plugin 'easymotion/vim-easymotion' | |
Plugin 'tpope/vim-surround' | |
Plugin 'kien/ctrlp.vim' | |
Plugin 'godlygeek/tabular' | |
Plugin 'SirVer/ultisnips' | |
Plugin 'somini/vim-autoclose' | |
Plugin 'tmhedberg/SimpylFold' | |
Plugin 'tell-k/vim-autopep8' | |
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} | |
Plugin 'nathanaelkane/vim-indent-guides' | |
Plugin 'shougo/neocomplete.vim' | |
"Plugin 'powerline/powerline' | |
Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim | |
"Plugin 'vim-airline/vim-airline' | |
"Plugin 'vim-airline/vim-airline-themes' | |
" ==== PLUGIN THEMES ==== | |
Plugin 'vim-scripts/darktango.vim' | |
Plugin 'jonathanfilip/vim-lucius' | |
Plugin 'morhetz/gruvbox' | |
Plugin 'tyrannicaltoucan/vim-quantum' | |
Plugin 'tomasr/molokai' | |
" ==== END PLUGIN THEMES ==== | |
" ==== PLUGIN SYNTAXES ==== | |
"Plugin 'cakebaker/scss-syntax.vim' | |
Plugin 'hdima/python-syntax' | |
Plugin 'othree/yajs.vim' | |
Plugin 'mitsuhiko/vim-jinja' | |
"Plugin 'evanmiller/nginx-vim-syntax' | |
" === END PLUGIN SYNTAXES ==== | |
call vundle#end() | |
filetype plugin indent on | |
" ==== END PLUGINS ==== | |
" ==== Start PLUG PLUGINS ==== | |
" Specify a directory for plugins | |
" - For Neovim: ~/.local/share/nvim/plugged | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' | |
" Any valid git URL is allowed | |
Plug 'https://github.com/junegunn/vim-github-dashboard.git' | |
" Multiple Plug commands can be written in a single line using | separators | |
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | |
" On-demand loading | |
"Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'tpope/vim-fireplace', { 'for': 'clojure' } | |
" Using a non-master branch | |
Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } | |
" Plugin options | |
Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } | |
" Plugin outside ~/.vim/plugged with post-update hook | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'nightsense/plumber' | |
" Unmanaged plugin (manually installed and updated) | |
"Plug '~/my-prototype-plugin' | |
" Initialize plugin system | |
call plug#end() | |
" ====Enf Plug Install ==== | |
" ==== BASIC ==== | |
" ==== color-scheme ======= | |
syntax enable | |
colorscheme solarized | |
"colorscheme gruvbox | |
"colorscheme plumber-dark | |
set background=dark | |
"set background=light | |
set guifont=Monospace\ 12 | |
set fillchars+=vert:\$ | |
"let g:molokai_original = 1 | |
"let g:rehash256 = 1 | |
" ==== color-scheme ======= | |
set ruler | |
set hidden | |
set number | |
set clipboard=unnamed | |
set laststatus=2 | |
set smartindent | |
set st=4 sw=4 et | |
set shiftwidth=4 | |
set tabstop=4 | |
let &colorcolumn="80" | |
:set guioptions-=m "remove menu bar | |
:set guioptions-=T "remove toolbar | |
:set guioptions-=r "remove right-hand scroll bar | |
:set guioptions-=L "remove left-hand scroll bar | |
:set lines=999 columns=999 | |
set splitbelow | |
set splitright | |
"split navigations | |
nnoremap <C-J> <C-W><C-J> | |
nnoremap <C-K> <C-W><C-K> | |
nnoremap <C-L> <C-W><C-L> | |
nnoremap <C-H> <C-W><C-H> | |
" Enable folding | |
set foldmethod=indent | |
set foldlevel=99 | |
" Enable folding with the spacebar | |
nnoremap <space> za | |
let g:SimpylFold_docstring_preview=1 | |
" ==== NERDTREE ==== | |
let NERDTreeIgnore = ['\.pyc$', '\.o$', '\.so$', '\.a$', '\.swp', '\.swo', '\.swn', '\.swm', '[a-zA-Z]*egg[a-zA-Z]*', '[a-zA-Z]*cache[a-zA-Z]*'] | |
let NERDTreeShowHidden=0 | |
let g:NERDTreeWinPos="left" | |
let g:NERDTreeDirArrows=1 | |
map <C-t> :NERDTreeToggle<CR> | |
" ==== Syntastic ==== | |
let g:syntastic_always_populate_loc_list = 1 | |
let g:syntastic_auto_loc_list = 1 | |
let g:syntastic_check_on_open = 1 | |
let g:syntastic_check_on_wq = 0 | |
set statusline+=%#warningmsg# | |
set statusline+=%{SyntasticStatuslineFlag()} | |
set statusline+=%* | |
let g:syntastic_javascript_checkers = ['eslint'] | |
let g:syntastic_javascript_mri_args = "--config=$HOME/.jshintrc" | |
let g:syntastic_python_checkers = [ 'pylint', 'flake8', 'pep8', 'pyflakes', 'python'] | |
let g:syntastic_yaml_checkers = ['jsyaml'] | |
let g:syntastic_html_tidy_exec = 'tidy5' | |
" ==== Snips ==== | |
let g:UltiSnipsExpandTrigger="<A-ENTER>" | |
let g:UltiSnipsJumpForwardTrigger="<A-ENTER>" | |
let g:UltiSnipsJumpBackwardTrigger="<A-BACKSPACE>" | |
" If you want :UltiSnipsEdit to split your window. | |
let g:UltiSnipsEditSplit="vertical" | |
" ==== Easymotion ==== | |
let g:EasyMotion_do_mapping = 0 | |
let g:EasyMotion_smartcase = 1 | |
nmap f <Plug>(easymotion-s) | |
nmap <silent> <A-Up> :wincmd k<CR> | |
nmap <silent> <A-Down> :wincmd j<CR> | |
nmap <silent> <A-Left> :wincmd h<CR> | |
nmap <silent> <A-Right> :wincmd l<CR> | |
"===== airline ===== | |
"let g:airline#extensions#tabline#enabled = 0 | |
"let g:airline#extensions#tabline#left_sep = ' ' | |
"let g:airline#extensions#tabline#left_alt_sep = '|' | |
"===== AutoPEP8 ===== | |
autocmd FileType python noremap <buffer> <F8> :call Autopep8()<CR> | |
let g:autopep8_ignore="E501,W293" | |
let g:autopep8_select="E501,W293" | |
let g:autopep8_pep8_passes=100 | |
let g:autopep8_max_line_length=79 | |
let g:autopep8_aggressive=2 | |
let g:autopep8_disable_show_diff=1 | |
let g:autopep8_diff_type='horizontal' | |
let g:autopep8_diff_type='vertical' | |
autocmd FileType python set equalprg=autopep8\ - | |
"=== indent indicator==== | |
let g:indent_guides_enable_on_vim_startup = 1 | |
hi IndentGuidesOdd ctermbg=black | |
hi IndentGuidesEven ctermbg=darkgrey | |
set secure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment