Merge branch 'master' of github.com:gam-phon/kickstart.nvim
This commit is contained in:
commit
173ac0d4de
4
init.lua
4
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,8 +730,11 @@ 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 = {},
|
||||||
|
-- npm install -g typescript typescript-language-server
|
||||||
|
tsserver = {},
|
||||||
ltex = {
|
ltex = {
|
||||||
ltex = {
|
ltex = {
|
||||||
additionalRules = {
|
additionalRules = {
|
||||||
|
|
|
@ -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,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -18,16 +18,4 @@ return {
|
||||||
config = true,
|
config = true,
|
||||||
vim.keymap.set({ 'n' }, '<leader>n', '<cmd>Neogit kind=replace<CR>', {}),
|
vim.keymap.set({ 'n' }, '<leader>n', '<cmd>Neogit kind=replace<CR>', {}),
|
||||||
},
|
},
|
||||||
|
|
||||||
--{
|
|
||||||
-- "simrat39/rust-tools.nvim",
|
|
||||||
-- ft = "rust",
|
|
||||||
-- dependencies = "neovim/nvim-lspconfig",
|
|
||||||
-- opts = function()
|
|
||||||
-- return require "custom.configs.rust-tools"
|
|
||||||
-- end,
|
|
||||||
-- config = function(_, opts)
|
|
||||||
-- require("rust-tools").setup(opts)
|
|
||||||
-- end,
|
|
||||||
--},
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue