This commit is contained in:
Yaser Alraddadi 2024-07-05 18:21:07 +03:00
parent bb1721e7ab
commit 73ae089825
3 changed files with 23 additions and 1 deletions

View File

@ -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 = {

View 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,
},
}

View File

@ -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,
}, },
}, },