tangled
alpha
login
or
join now
biscui.tech
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
fix(plugins): astro TS
biscui.tech
3 months ago
84156729
5df038a6
+13
-12
1 changed file
expand all
collapse all
unified
split
.config
nvim
plugin
40_plugins.lua
+13
-12
.config/nvim/plugin/40_plugins.lua
···
53
53
'typescript',
54
54
'tsx',
55
55
'css',
56
56
-
'astro',
57
57
-
'svelte',
58
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
101
-
-- Use `:h vim.lsp.config()` or 'ftplugin/lsp/' directory to configure servers.
98
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
185
+
186
186
+
--
187
187
+
-- CUSTOM BELOW
188
188
+
188
189
later(function()
189
190
add({
190
191
source = 'folke/snacks.nvim',
···
233
234
end,
234
235
})
235
236
236
236
-
-- vim.lsp.enable({
237
237
-
-- 'ts_ls',
238
238
-
-- 'astro',
239
239
-
-- 'eslint',
240
240
-
-- 'rust_analyzer',
241
241
-
-- 'marksman',
242
242
-
-- 'lua_ls'
243
243
-
-- })
237
237
+
vim.lsp.enable({
238
238
+
'ts_ls',
239
239
+
'astro',
240
240
+
'eslint',
241
241
+
'rust_analyzer',
242
242
+
'marksman',
243
243
+
'lua_ls'
244
244
+
})