-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.local
41 lines (31 loc) · 908 Bytes
/
vimrc.local
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
set swapfile
set scrolloff=4
set textwidth=0
set modeline
set modelines=5
let g:netrw_liststyle = 3
let g:netrw_browse_split = 4
let g:netrw_winsize = 25
let g:gutentags_ctags_exclude = ['target', 'tmp', 'spec', 'node_modules', 'public', '*.json', '*.svg']
let g:go_version_warning = 0
if filereadable(expand("~/.vimrc_background"))
let base16colorspace=256
source ~/.vimrc_background
endif
au BufRead,BufNewFile *.yaml.gotmpl set filetype=yaml
hi SpellBad ctermbg=black ctermfg=red
nnoremap <leader>p "+p
vnoremap <leader>p "+p
nnoremap <leader>P "+P
vnoremap <leader>P "+P
nnoremap <leader>y "+y
vnoremap <leader>y "+y
nnoremap <leader>Y "+y$
"let python_highlight_all=1
let g:fugitive_gitlab_domains = ['https://gitlab.com']
let g:gitlab_api_keys = {'gitlab.com': $GITLAB_RO_TOKEN}
" https://github.com/thoughtbot/dotfiles/issues/656
augroup ale
autocmd!
augroup END
set clipboard=unnamed