-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugins.vim
More file actions
102 lines (91 loc) · 2.56 KB
/
plugins.vim
File metadata and controls
102 lines (91 loc) · 2.56 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
" if using neovim, the init.vim should be placed under follows:
" /usr/share/nvim/sysinit.vim
" /etc/xdg/nvim/init.vim
" ~/.config/nvim/init.vim
filetype off
if has('nvim')
if has("win32")
set rtp+=C:\Vim\bundle\Vundle.vim
call vundle#begin('C:\Vim\bundle')
else
set rtp+=/usr/share/vim/bundle/Vundle.vim
call vundle#begin('/usr/share/vim/bundle')
endif
else
set rtp+=$VIM/bundle/Vundle.vim
call vundle#begin('$VIM/bundle')
endif
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Vim theme
Plugin 'NLKNguyen/papercolor-theme'
Plugin 'kadekillary/subtle_solo'
Plugin 'morhetz/gruvbox'
Plugin 'srcery-colors/srcery-vim'
Plugin '4513ECHO/vim-colors-hatsunemiku'
Plugin 'doums/darcula'
Plugin 'jcorbin/darkula'
Plugin 'ku1ik/vim-monokai'
Plugin 'Mcmartelle/vim-monokai-bold'
Plugin 'frazrepo/vim-rainbow'
Plugin 'vim-scripts/LargeFile'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-scripts/buf_it'
Plugin 'mhinz/vim-startify'
Plugin 'majutsushi/tagbar'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'bronson/vim-trailing-whitespace'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-fugitive'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'Raimondi/delimitMate'
Plugin 'Yggdroot/indentLine'
Plugin 'tiagofumo/vim-nerdtree-syntax-highlight'
Plugin 'ryanoasis/vim-devicons'
" Keyboard sound
" Plugin 'skywind3000/vim-keysound'
Plugin 'liuchengxu/vim-clap'
Plugin 'luoyancn/pyflakes-vim'
" Rust
"Plugin 'racer-rust/vim-racer'
"Plugin 'maralla/completor.vim'
Plugin 'rust-lang/rust.vim'
Plugin 'dense-analysis/ale'
Plugin 'prabirshrestha/vim-lsp'
Plugin 'prabirshrestha/async.vim'
Plugin 'prabirshrestha/asyncomplete.vim'
Plugin 'prabirshrestha/asyncomplete-lsp.vim'
Plugin 'mattn/vim-lsp-settings'
"Plugin 'keremc/asyncomplete-racer.vim'
if has('python3')
" Python
Plugin 'davidhalter/jedi-vim'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'prabirshrestha/asyncomplete-ultisnips.vim'
endif
if !has("win32")
Plugin 'mileszs/ack.vim'
"Plugin 'xavierd/clang_complete'
Plugin 'keremc/asyncomplete-clang.vim'
" For C/C++, clangd must be installed
" On Fedora
" dnf/yum install clang-tools-extra -y
" On CentOS/Redhat
" yum install clang -y
" On Manjaro
" pacman -Syu clang
endif
" Programe language support
"Plugin 'scrooloose/syntastic'
" C and C++
Plugin 'vim-scripts/a.vim'
" Golang
"Plugin 'fatih/vim-go'
"Plugin 'visualfc/gocode', {'rtp': 'vim/'}
if !has("gui_running")
"Plugin 'ap/vim-buftabline'
endif
call vundle#end() " required
filetype plugin indent on