diff --git a/.config/nvim/plugin/lspconfig.lua b/.config/nvim/plugin/lspconfig.lua index 18d5008..104b445 100644 --- a/.config/nvim/plugin/lspconfig.lua +++ b/.config/nvim/plugin/lspconfig.lua @@ -62,7 +62,7 @@ nvim_lsp.stylelint_lsp.setup { filetypes = { "css", "scss" } } -nvim_lsp.tsserver.setup { +nvim_lsp.ts_ls.setup { on_attach = on_attach, filetypes = { "typescript", "typescriptreact", "typescript.tsx" }, cmd = { "typescript-language-server", "--stdio" }, diff --git a/.zshrc b/.zshrc index e6785db..1ade498 100644 --- a/.zshrc +++ b/.zshrc @@ -15,6 +15,7 @@ else export PATH="${PATH}:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin" source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh + source /usr/lib/zsh-git-prompt/zshrc.sh fi export CONFIGDIR="${HOME}/.config"