-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc_cl_install
executable file
·38 lines (35 loc) · 1018 Bytes
/
.vimrc_cl_install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
syntax enable
set nocompatible
set showcmd
filetype off
syntax on
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" vundle stuff
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'ycm-core/YouCompleteMe'
Plugin 'nvie/vim-flake8'
Plugin 'morhetz/gruvbox'
Plugin 'vim-python/python-syntax'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
Plugin 'preservim/nerdtree'
Plugin 'frazrepo/vim-rainbow'
Plugin 'dracula/vim', { 'name': 'dracula' }
Plugin 'cocopon/iceberg.vim'
Plugin 'Rigellute/shades-of-purple.vim'
Plugin 'tomasiser/vim-code-dark'
Plugin 'catppuccin/catppuccin'
Plugin 'NLKNguyen/papercolor-theme'
Plugin 'ghifarit53/tokyonight-vim'
Plugin 'marcopaganini/termschool-vim-theme'
Plugin 'jaredgorski/spacecamp'
Plugin 'whatyouhide/vim-gotham'
Plugin 'wadackel/vim-dogrun'
Plugin 'Badacadabra/vim-archery'
Plugin 'jdsimcoe/abstract.vim'
call vundle#end()