-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
280 lines (224 loc) · 9.05 KB
/
vimrc
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
" ------------------------------------------------
" ---------- Vundle config -----------------------
" ------------------------------------------------
set nocompatible " be iMproved, required
filetype off " required
" Add homebrew fzf to path
set rtp+=/usr/local/opt/fzf
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" Plugin 'christoomey/vim-tmux-navigator'
" Plugin 'itchyny/lightline.vim'
"Plugin 'honza/vim-snippets'
"Plugin 'isRuslan/vim-es6'
Plugin 'ConradIrwin/vim-bracketed-paste'
Plugin 'elixir-lang/vim-elixir'
Plugin 'fatih/vim-go'
Plugin 'hail2u/vim-css3-syntax'
Plugin 'lambdatoast/elm.vim'
Plugin 'mxw/vim-jsx'
Plugin 'tomlion/vim-solidity'
Plugin 'tomtom/tcomment_vim'
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-fugitive'
Plugin 'leafgarland/typescript-vim'
Plugin 'junegunn/vim-easy-align'
Plugin 'w0rp/ale'
Plugin 'junegunn/fzf.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
" used with lightline
" set laststatus=2
" if !has('gui_running')
" set t_Co=256
" endif
" set leader to space
let g:mapleader = "\<space>"
" let g:ale_open_list = 1
let g:ale_python_auto_pipenv = 1
" let g:ale_python_flake8_auto_pipenv = 1
" let g:ale_python_pylint_auto_pipenv = 1
let g:ale_cache_executable_check_failures = 1
let g:ale_set_quickfix = 1
let g:ale_history_log_output = 1
let g:ale_linters = {
\ 'elixir': ['elixir', 'credo', 'mix'],
\ 'python': ['flake8', 'pylint'],
\}
let g:ale_fix_on_save = 1
let g:ale_fixers = {
\ 'elixir': ['mix_format'],
\ 'elm': ['format'],
\ 'python': ['yapf'],
\ 'javascript': ['prettier'],
\}
" FZF stuff
nnoremap <Leader>o :Files<cr>
nnoremap <Leader>s :Find
command! -bang -nargs=* Find call fzf#vim#grep(
\ 'rg --column --line-number --no-heading --fixed-strings --ignore-case --no-ignore --hidden --follow '.$RG_IGNORE.' --color "always" '.shellescape(<q-args>), 1, <bang>0)
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" 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 syntax on for all file types
syntax enable
set number
set showmode
set autoindent
set directory=$HOME/.vimswp//
" Insert spaces whenever "tab" is pressed
set expandtab
" 4 spaces for a tab
set tabstop=4
" spaces for indentation
set shiftwidth=4
" makes the backspace key treat the four spaces like a tab (so one backspace goes back a full 4 spaces).
set softtabstop=4
" make backspaces more powerfull
set backspace=indent,eol,start
" Wrap text after a certain number of characters. Do this for all file types.
set textwidth=99
hi Comment ctermfg=2
set ruler
set showmatch
set hlsearch
let loaded_matchparen = 1
set complete-=i
set completeopt=longest
" yanking text goes to the system clipboard
" set clipboard=unnamed
" Shortcuts
" these are old comment shortcuts which are superceded by gc plugin
" map ,# :s/^/#/<CR><Esc>:nohlsearch<CR>
" map ,!# :s/^#//<CR><Esc>:nohlsearch<CR>
map \l :set number!<CR>
map \o :set paste!<CR>
" vimrc file for following the coding standards specified in PEP 7 & 8.
"
" To use this file, source it in your own personal .vimrc file (``source
" <filename>``) or, if you don't have a .vimrc file, you can just symlink to it
" (``ln -s <this file> ~/.vimrc``). All options are protected by autocmds
" (read below for an explanation of the command) so blind sourcing of this file
" is safe and will not affect your settings for non-Python or non-C files.
"
"
" All setting are protected by 'au' ('autocmd') statements. Only files ending
" in .py or .pyw will trigger the Python settings while files ending in *.c or
" *.h will trigger the C settings. This makes the file "safe" in terms of only
" adjusting settings for Python and C files.
"
" Only basic settings needed to enforce the style guidelines are set.
" Some suggested options are listed but commented out at the end of this file.
" Number of spaces that a pre-existing tab is equal to.
" For the amount of space used for a new tab use shiftwidth.
au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=4
"
" Now for html and js
au BufRead,BufNewFile *.html,*.js,*.jsx,*.scss,*.jade set tabstop=2
" Strip trailing whitespace on save
au BufWritePre *.py,*.pyw,*.c,*.h,*.sh,*.js,*.jsx,*.scss,*.jade,*.rb,*.ex,*.exs :%s/\s\+$//e
" What to use for an indent.
" This will affect Ctrl-T and 'autoindent'.
" Python: 4 spaces
" C: tabs (pre-existing files) or 4 spaces (new files)
au BufRead,BufNewFile *.py,*pyw set shiftwidth=4
" HTML/js/web/ruby
au BufRead,BufNewFile *.html,*.js,*.jsx,*.ts,*.tsx,*.scss,*.jade,*.rb set shiftwidth=2
" This should be redundant since we're already setting tabstop and shifwidth,
" but leave it in for explicitness.
au BufRead,BufNewFile *.py,*pyw set softtabstop=4
au BufRead,BufNewFile *.py,*.pyw,*.html set expandtab
fu Select_c_style()
if search('^\t', 'n', 150)
set shiftwidth=8
set noexpandtab
el
set shiftwidth=4
set expandtab
en
endf
au BufRead,BufNewFile *.c,*.h call Select_c_style()
au BufRead,BufNewFile Makefile* set noexpandtab
" Use the below highlight group when displaying bad whitespace is desired.
highlight BadWhitespace ctermbg=red guibg=red
" Display tabs at the beginning of a line in Python mode as bad.
au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
" Make trailing whitespace be flagged as bad.
au BufRead,BufNewFile *.py,*.pyw,*.c,*.h,*.sh,*.ex,*.exs match BadWhitespace /\s\+$/
" Turn off settings in 'formatoptions' relating to comment formatting.
" - c : do not automatically insert the comment leader when wrapping based on
" 'textwidth'
" - o : do not insert the comment leader when using 'o' or 'O' from command mode
" - r : do not insert the comment leader when hitting <Enter> in insert mode
" Python: not needed
" C: prevents insertion of '*' at the beginning of every line in a comment
au BufRead,BufNewFile *.c,*.h set formatoptions-=c formatoptions-=o formatoptions-=r
" Use UNIX (\n) line endings.
" Only used for new files so as to not force existing files to change their
" line endings.
" Python: yes
" C: yes
au BufNewFile *.py,*.pyw,*.c,*.h set fileformat=unix
" rst docs
" Make trailing whitespace be flagged as bad.
au BufRead,BufNewFile *.rst match BadWhitespace /\s\+$/
" Strip trailing whitespace on save
au BufWritePre *.rst :%s/\s\+$//e
" Bad whitespace for html, js, css, yaml, etc.
au BufRead,BufNewFile *.html,*.css,*.js,*.jsx,*.ts,*.tsx,*.scss,*.less,*.yml,*.sls match BadWhitespace /^\t\+/
au BufRead,BufNewFile *.html,*.css,*.js,*.jsx,*.ts,*.tsx,*.scss,*.less,*.yml,*.sls match BadWhitespace /\s\+$/
au BufWritePre *.html,*.css,*.js,*.jsx,*.ts,*.tsx,*.scss,*.less,*.yml,*.sls :%s/\s\+$//e
" ----------------------------------------------------------------------------
" The following section contains suggested settings. While in no way required
" to meet coding standards, they are helpful.
" Puts a marker at the beginning of the file to differentiate between UTF and
" UCS encoding (WARNING: can trick shells into thinking a text file is actually
" a binary file when executing the text file): ``set bomb``
" For full syntax highlighting:
" let python_highlight_all=1
" Automatically indent based on file type:
filetype indent on
" Folding based on indentation: ``set foldmethod=indent``
" highlight the current line & column - use \c to turn on
" hi CursorLine cterm=NONE ctermbg=235
" hi CursorColumn cterm=NONE ctermbg=235
" nnoremap <Leader>c :set cursorline! cursorcolumn!<CR>
" Highlight the current line
set cursorline
" Set cursorline colors
" hi CursorLine ctermbg=235
" Set color of number column on cursorline
" hi CursorLineNR ctermbg=235 ctermfg=221
" Set line number color in left tray
hi LineNr ctermfg=220
" -----------------------------------
au BufNewFile,BufRead *.less set filetype=less
" set syntax for salt/sls files
au BufNewFile,BufRead *.sls,*.yml set filetype=yaml shiftwidth=2 tabstop=2
au BufNewFile,BufRead *.yaml,*.yml so ~/.vim/yaml.vim
" au BufNewFile,BufRead *.json set filetype=javascript shiftwidth=2 tabstop=2
" set syntax for jinja files
au BufNewFile,BufRead *.j2,*.jinja set filetype=jinja shiftwidth=2 tabstop=2
set list
set listchars=tab:▸\
nnoremap <silent> gl "_yiw?\w\+\_W\+\%#<CR>:s/\(\%#\w\+\)\(\_W\+\)\(\w\+\)/\3\2\1/<CR><c-o><c-l>:nohlsearch<CR>
nnoremap <silent> gr "_yiw:s/\(\%#\w\+\)\(\_W\+\)\(\w\+\)/\3\2\1/<CR><c-o>/\w\+\_W\+<CR><c-l>:nohlsearch<CR>
" Start interactive EasyAlign in visual mode (e.g. vipga)
xmap ga <Plug>(EasyAlign)
" Start interactive EasyAlign for a motion/text object (e.g. gaip)
nmap ga <Plug>(EasyAlign)
set laststatus=2
set statusline=%t