Compare commits

...

3 Commits

3 changed files with 10 additions and 3 deletions

View File

@ -3,6 +3,7 @@ chatterino
dbeaver-community dbeaver-community
displaylink displaylink
docker docker
chromium
firefox@nightly firefox@nightly
font-hack-nerd-font font-hack-nerd-font
gimp gimp

View File

@ -637,10 +637,10 @@ autocmd BufRead,BufNewFile /tmp/neomutt* map ZZ :Goyo\|x!<CR>
autocmd BufRead,BufNewFile /tmp/neomutt* map ZQ :Goyo\|q!<CR> autocmd BufRead,BufNewFile /tmp/neomutt* map ZQ :Goyo\|q!<CR>
" Yaml " Yaml
autocmd BufRead,BufNewFile *.yaml let g:indentLine_enabled = 1 autocmd BufRead,BufNewFile *.yaml,*.yml let g:indentLine_enabled = 1
autocmd BufRead,BufNewFile *.yaml let g:indentLine_char = '⦙' autocmd BufRead,BufNewFile *.yaml,*.yml let g:indentLine_char = '⦙'
au BufRead,BufNewFile *.yaml,*.yml if search('hosts:\|tasks:', 'nw') | set ft=yaml.ansible | endif au BufRead,BufNewFile *.yaml,*.yml if search('hosts:\|tasks:', 'nw') | set ft=yaml.ansible | endif
autocmd BufWritePre *.yaml silent! undojoin | Neoformat prettier autocmd BufWritePre *.yaml,*.yml silent! undojoin | Neoformat prettier
" GoLang " GoLang
autocmd BufRead *.go set noexpandtab autocmd BufRead *.go set noexpandtab

View File

@ -484,6 +484,11 @@ function install_winbox_old() {
xattr -cr ~/Applications/winbox.exe xattr -cr ~/Applications/winbox.exe
} }
function install_prettier(){
$install prettier
$install prettierd
}
function main() { function main() {
command_start update_pip command_start update_pip
command_start install_neovim_module_for_python command_start install_neovim_module_for_python
@ -521,6 +526,7 @@ function main() {
command_start install_streamlink command_start install_streamlink
command_start install_fzf command_start install_fzf
command_start install_winbox_old command_start install_winbox_old
command_start install_prettier
command_start install_zsh_addons command_start install_zsh_addons
command_start install_brew_programs command_start install_brew_programs
} }