diff --git a/.config/nvim/lua/custom/config/language-servers.lua b/.config/nvim/lua/custom/config/language-servers.lua index df1fad5..9c6d566 100644 --- a/.config/nvim/lua/custom/config/language-servers.lua +++ b/.config/nvim/lua/custom/config/language-servers.lua @@ -56,15 +56,15 @@ return { }, }, }, -- python - bashls = true, -- bash - taplo = true, -- toml - lemminx = true, -- xml - yamlls = true, -- yaml - jsonls = true, -- json - html = true, -- html - cssls = true, -- css - ts_ls = true, -- javascript/typescript - astro = true, -- astro framework + bashls = true, -- bash + taplo = true, -- toml + lemminx = true, -- xml + yamlls = true, -- yaml + jsonls = true, -- json + html = true, -- html + cssls = true, -- css + ts_ls = true, -- javascript/typescript + astro = true, -- astro framework mdx_analyzer = true, -- markdown with JS I think -- marksman = true, -- Markdown LSP -- markdown_oxide = true, -- Markdown LSP but better @@ -128,4 +128,5 @@ return { -- }, -- }, -- }, + zls = true, -- zig } diff --git a/.zshrc b/.zshrc index e001294..d961e95 100644 --- a/.zshrc +++ b/.zshrc @@ -80,6 +80,7 @@ export FZF_DEFAULT_OPTS=" \ export GOPATH="$HOME/go" export PATH="$GOPATH/bin:$PATH" export PATH="$HOME/scripts:$PATH" +export PATH="$HOME/.zig:$PATH" # pnpm export PNPM_HOME="/home/kyren/.local/share/pnpm"