Too many vimrc changes
This commit is contained in:
parent
0bd59a9115
commit
81990d68c5
17
vimrc
17
vimrc
@ -29,7 +29,7 @@ set statusline+=%#warningmsg#
|
|||||||
set statusline+=%*
|
set statusline+=%*
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set updatetime=100
|
set updatetime=100
|
||||||
set textwidth=67
|
set textwidth=1000
|
||||||
|
|
||||||
if has("persistent_undo")
|
if has("persistent_undo")
|
||||||
set undodir=~/.vim/_undo//
|
set undodir=~/.vim/_undo//
|
||||||
@ -46,9 +46,13 @@ au BufRead,BufNewFile .envrc setfiletype sh
|
|||||||
au BufRead,BufNewFile Dockerfile* setfiletype dockerfile
|
au BufRead,BufNewFile Dockerfile* setfiletype dockerfile
|
||||||
au BufRead,BufNewFile Pipfile setfiletype toml
|
au BufRead,BufNewFile Pipfile setfiletype toml
|
||||||
au BufRead,BufNewFile kubectl-edit-status-* setfiletype yaml
|
au BufRead,BufNewFile kubectl-edit-status-* setfiletype yaml
|
||||||
|
au BufRead,BufNewFile .lintr setfiletype yaml
|
||||||
|
au BufRead,BufNewFile devcontainer.json setfiletype jsonc
|
||||||
|
au BufRead,BufNewFile devcontainer-feature.json setfiletype jsonc
|
||||||
au BufNewFile,BufRead *.go setlocal noexpandtab tabstop=4 shiftwidth=4
|
au BufNewFile,BufRead *.go setlocal noexpandtab tabstop=4 shiftwidth=4
|
||||||
au FileType go nmap <leader>r <Plug>(go-run)
|
au FileType go nmap <leader>r <Plug>(go-run)
|
||||||
au FileType go nmap <Leader>c <Plug>(go-coverage-toggle)
|
au FileType go nmap <Leader>c <Plug>(go-coverage-toggle)
|
||||||
|
au FileType sh set expandtab
|
||||||
au QuickFixCmdPost *grep* cwindow
|
au QuickFixCmdPost *grep* cwindow
|
||||||
|
|
||||||
" run :GoBuild or :GoTestCompile based on the go file
|
" run :GoBuild or :GoTestCompile based on the go file
|
||||||
@ -73,7 +77,10 @@ map <leader>l :Minimap<CR>
|
|||||||
map <leader>L :MinimapClose<CR>
|
map <leader>L :MinimapClose<CR>
|
||||||
nmap <F8> :TagbarToggle<CR>
|
nmap <F8> :TagbarToggle<CR>
|
||||||
|
|
||||||
au FileType python nmap <leader>t :Black<CR>:w<CR>
|
augroup black_on_save
|
||||||
|
autocmd!
|
||||||
|
autocmd BufWritePre *.py Black
|
||||||
|
augroup end
|
||||||
|
|
||||||
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
|
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
@ -108,8 +115,8 @@ let g:vim_markdown_folding_disabled = 1
|
|||||||
let g:vim_markdown_frontmatter = 1
|
let g:vim_markdown_frontmatter = 1
|
||||||
let g:yapf_style = "pep8"
|
let g:yapf_style = "pep8"
|
||||||
|
|
||||||
packadd! dracula
|
packadd! dichromatic
|
||||||
colorscheme dracula
|
colorscheme dichromatic
|
||||||
|
|
||||||
hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2
|
hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2
|
||||||
hi minimapCursor ctermbg=59 ctermfg=228 guibg=#5F5F5F guifg=#FFFF87
|
hi minimapCursor ctermbg=59 ctermfg=228 guibg=#5F5F5F guifg=#FFFF87
|
||||||
|
Loading…
Reference in New Issue
Block a user