update
This commit is contained in:
parent
bb1721e7ab
commit
73ae089825
2
init.lua
2
init.lua
@ -668,6 +668,7 @@ require('lazy').setup({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- python -> LSP: basedpyright, Formatter & linter
|
||||||
-- https://github.com/astral-sh/ruff/blob/main/crates/ruff_server/docs/setup/NEOVIM.md
|
-- https://github.com/astral-sh/ruff/blob/main/crates/ruff_server/docs/setup/NEOVIM.md
|
||||||
ruff = {
|
ruff = {
|
||||||
-- Disable hover in favor of Pyright
|
-- Disable hover in favor of Pyright
|
||||||
@ -729,6 +730,7 @@ require('lazy').setup({
|
|||||||
html = {},
|
html = {},
|
||||||
jsonls = {},
|
jsonls = {},
|
||||||
tailwindcss = {},
|
tailwindcss = {},
|
||||||
|
-- js -> LSP: tsserver, Formatter & linter: biome
|
||||||
-- npm install -g @biomejs/biome
|
-- npm install -g @biomejs/biome
|
||||||
biome = {},
|
biome = {},
|
||||||
ltex = {
|
ltex = {
|
||||||
|
20
lua/custom/plugins/html.lua
Normal file
20
lua/custom/plugins/html.lua
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
'windwp/nvim-ts-autotag',
|
||||||
|
-- ft = {
|
||||||
|
-- 'html',
|
||||||
|
-- 'javascript',
|
||||||
|
-- 'typescript',
|
||||||
|
-- 'svelte',
|
||||||
|
-- },
|
||||||
|
config = function()
|
||||||
|
require('nvim-ts-autotag').setup {
|
||||||
|
-- opts = {
|
||||||
|
-- enable_close = true,
|
||||||
|
-- enable_rename = true,
|
||||||
|
-- enable_close_on_slash = false,
|
||||||
|
-- },
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
@ -9,7 +9,7 @@ return {
|
|||||||
-- brew install font-hack-nerd-font
|
-- brew install font-hack-nerd-font
|
||||||
-- 'nvim-tree/nvim-web-devicons',
|
-- 'nvim-tree/nvim-web-devicons',
|
||||||
-- },
|
-- },
|
||||||
config = {
|
opts = {
|
||||||
use_icons = false,
|
use_icons = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user