Compare commits

...

3 Commits

Author SHA1 Message Date
y0rune 93f83ec173 vimrc: added yml,yaml into a vimrc config 2025-02-19 22:27:54 +01:00
y0rune 7b39dd1506 Update-pkg: added prettier 2025-02-19 22:26:42 +01:00
y0rune 8bdc3f8586 brew_programs_cask: added chromium 2025-02-19 22:26:24 +01:00
3 changed files with 10 additions and 3 deletions
+1
View File
@@ -3,6 +3,7 @@ chatterino
dbeaver-community
displaylink
docker
chromium
firefox@nightly
font-hack-nerd-font
gimp
+3 -3
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>
" Yaml
autocmd BufRead,BufNewFile *.yaml let g:indentLine_enabled = 1
autocmd BufRead,BufNewFile *.yaml let g:indentLine_char = '⦙'
autocmd BufRead,BufNewFile *.yaml,*.yml let g:indentLine_enabled = 1
autocmd BufRead,BufNewFile *.yaml,*.yml let g:indentLine_char = '⦙'
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
autocmd BufRead *.go set noexpandtab
+6
View File
@@ -484,6 +484,11 @@ function install_winbox_old() {
xattr -cr ~/Applications/winbox.exe
}
function install_prettier(){
$install prettier
$install prettierd
}
function main() {
command_start update_pip
command_start install_neovim_module_for_python
@@ -521,6 +526,7 @@ function main() {
command_start install_streamlink
command_start install_fzf
command_start install_winbox_old
command_start install_prettier
command_start install_zsh_addons
command_start install_brew_programs
}