this repo has no description

fix(plugins): astro TS

+13 -12
+13 -12
.config/nvim/plugin/40_plugins.lua
··· 53 53 'typescript', 54 54 'tsx', 55 55 'css', 56 - 'astro', 57 - 'svelte', 58 - 'scss' 59 56 -- To see available languages: 60 57 -- - Execute `:=require('nvim-treesitter').get_available()` 61 58 -- - Visit 'SUPPORTED_LANGUAGES.md' file at ··· 98 95 99 96 -- Use `:h vim.lsp.enable()` to automatically enable language server based on 100 97 -- the rules provided by 'nvim-lspconfig'. 101 - -- Use `:h vim.lsp.config()` or 'ftplugin/lsp/' directory to configure servers. 98 + -- Use `:h vim.lsp.config()` or 'after/lsp/' directory to configure servers. 102 99 -- Uncomment and tweak the following `vim.lsp.enable()` call to enable servers. 103 100 -- vim.lsp.enable({ 104 101 -- -- For example, if `lua-language-server` is installed, use `'lua_ls'` entry ··· 185 182 -- vim.cmd('color everforest') 186 183 -- end) 187 184 185 + 186 + -- 187 + -- CUSTOM BELOW 188 + 188 189 later(function() 189 190 add({ 190 191 source = 'folke/snacks.nvim', ··· 233 234 end, 234 235 }) 235 236 236 - -- vim.lsp.enable({ 237 - -- 'ts_ls', 238 - -- 'astro', 239 - -- 'eslint', 240 - -- 'rust_analyzer', 241 - -- 'marksman', 242 - -- 'lua_ls' 243 - -- }) 237 + vim.lsp.enable({ 238 + 'ts_ls', 239 + 'astro', 240 + 'eslint', 241 + 'rust_analyzer', 242 + 'marksman', 243 + 'lua_ls' 244 + })