-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
104 lines (86 loc) · 2.32 KB
/
Copy pathplugins.vim
File metadata and controls
104 lines (86 loc) · 2.32 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
103
104
" Vim Plug plugins
call plug#begin('~/.vim/plugged')
" {{{ fzf
" PlugInstall and PlugUpdate will clone fzf in ~/.fzf and run install script
"set rtp+=~/.fzf
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
"Plug '~/.fzf'
" Both options are optional. You don't have to install fzf in ~/.fzf
" and you don't have to run install script if you use fzf only in Vim.
" }}}
" {{{ vim-go
"This plugin adds Go language support for Vim
Plug 'fatih/vim-go'
let g:go_version_warning = 0
" }}}
" {{{ vim-bitbake
"BitBake syntax highlighter
Plug 'kergoth/vim-bitbake'
" }}}
" {{{ vim-fugitive
"wrapper for git commands
Plug 'tpope/vim-fugitive'
" }}}
" {{{ vim-gitgutter
"signs for add, delete, change
Plug 'airblade/vim-gitgutter'
" }}}
"{{{ taglist
" Uses exuberant ctags.
Plug 'vim-scripts/taglist.vim'
" }}}
" {{{ nerdtree
" The NERD tree file explorer
Plug 'scrooloose/nerdtree'
" }}}
" {{{ vim-solarized
" Solarized colorscheme. Simpler fork of 'altercation/vim-colors-solarized'
Plug 'ericbn/vim-solarized'
" }}}
" {{{ Vim Linux Coding Style
Plug 'vivien/vim-linux-coding-style'
let g:linuxsty_patterns = [ "/projects/platforms/linux/ti/glsdk/kernel" ]
" }}}
" {{{ ack.vim
" Vim plugin for the Perl module / CLI script 'ack'
" Can also be used with ag.
Plug 'mileszs/ack.vim'
" }}}
" {{{ bufexplorer
Plug 'jlanzarotta/bufexplorer'
" }}}
" {{{ vim-airline
" Lean & mean status/tabline for vim that's light as air.
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" }}}
" {{{ vim-esearch
" NeoVim/Vim plugin performing project-wide async search and replace, similar to SublimeText, Atom et al.
Plug 'eugen0329/vim-esearch'
" }}}
" {{{ vim-tmux-navigator
" Smart pane switching.
Plug 'christoomey/vim-tmux-navigator'
" }}}
" {{{ vim-surround
" quoting/parenthesizing made simple
Plug 'tpope/vim-surround'
" }}}
" {{{ ale
" Asynchronous Lint Engine
Plug 'dense-analysis/ale'
let g:ale_cpp_ccls_init_options = {
\ 'cache': {
\ 'directory': '/tmp/ccls/cache'
\ }
\}
let g:ale_echo_msg_format = '[%linter%:%severity%]: %code: %%s'
let g:ale_echo_msg_error_str = 'E'
let g:ale_echo_msg_warning_str = 'W'
let g:ale_cache_executable_check_failures = 1
let g:ale_python_flake8_options = '--max-line-length=88'
" }}}
"Add plugins to &runtimepath
call plug#end()
" vim: set foldmethod=marker: