diff --git a/home/.config/nvim/lua/plugins/lsp.lua b/home/.config/nvim/lua/plugins/lsp.lua index 94dab6c1..6e58be47 100644 --- a/home/.config/nvim/lua/plugins/lsp.lua +++ b/home/.config/nvim/lua/plugins/lsp.lua @@ -58,6 +58,7 @@ require("mason-lspconfig").setup({automatic_installation = true}) lspconfig.tsserver.setup {{}, on_attach = M.lsp_map_keys} lspconfig.yamlls.setup {{}, on_attach = M.lsp_map_keys} lspconfig.jsonls.setup {{}, on_attach = M.lsp_map_keys} +lspconfig.html.setup {{}, on_attach = M.lsp_map_keys} lspconfig.sumneko_lua.setup { settings = { diff --git a/home/.config/zsh/03-aliases.zsh b/home/.config/zsh/03-aliases.zsh index 3662bd65..bddf1c63 100644 --- a/home/.config/zsh/03-aliases.zsh +++ b/home/.config/zsh/03-aliases.zsh @@ -106,7 +106,7 @@ sdotdrop() { source $DOTREPO/secrets/secrets && sudo -E $DOTREPO/dotdrop/dotdrop updatesecrets() { bash $DOTREPO/secrets/secrets.sh; chmod 600 $DOTREPO/secrets/secrets } compdef _dotdrop-completion.zsh sdotdrop alias dotgit='git -C $DOTREPO' -dotsync() { cd $DOTREPO && gpull && ga && gc && gpush && cd $OLDPWD } +dotsync() { cd $DOTREPO && gac && gpull && gpush && cd $OLDPWD } # sync password manager passync() { pass git pull && pass git push && updatesecrets }