Compare commits

...

2 Commits

Author SHA1 Message Date
070ffaa644
Switch alacritty to windowed 2023-01-10 11:47:08 -05:00
ebccb12337
Use comma-t for Black 2023-01-10 11:46:55 -05:00
2 changed files with 6 additions and 5 deletions

View File

@ -9,12 +9,12 @@ window:
columns: 0
lines: 0
padding:
x: 0
y: 0
x: 2
y: 2
dynamic_padding: false
decorations: none
decorations: full
opacity: 1.0
startup_mode: Maximized
startup_mode: Windowed
scrolling:
history: 10000
multiplier: 3

3
vimrc
View File

@ -45,7 +45,6 @@ au BufRead,BufNewFile .envrc setfiletype sh
au BufRead,BufNewFile Dockerfile* setfiletype dockerfile
au BufRead,BufNewFile Pipfile setfiletype toml
au BufRead,BufNewFile kubectl-edit-status-* setfiletype yaml
au BufWritePre *.py execute ':Black'
au BufNewFile,BufRead *.go setlocal noexpandtab tabstop=4 shiftwidth=4
au FileType go nmap <leader>r <Plug>(go-run)
au FileType go nmap <Leader>c <Plug>(go-coverage-toggle)
@ -70,6 +69,8 @@ map <leader>t :w<CR>
map <leader>- :nohl<CR>
map <leader>w :%s/ *$//<CR>
au FileType python nmap <leader>t :Black<CR>:w<CR>
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
let g:airline_powerline_fonts = 1
let g:coc_global_extensions = ['coc-tsserver']