fix: stuff!

This commit is contained in:
2025-03-31 13:24:05 +00:00
parent ffc0132634
commit 58ede8fd41
2 changed files with 3 additions and 34 deletions

View File

@ -70,13 +70,6 @@ end
-- Save --
vim.keymap.set("n", "<C-s>", "<Cmd>w<CR>")
-- Lint on save --
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
callback = function()
require("lint").try_lint()
end,
})
-- Split navigation --
vim.keymap.set("n", "<C-h>", "<C-w>h")
vim.keymap.set("n", "<C-j>", "<C-w>j")

View File

@ -15,33 +15,8 @@ return {
})
end,
},
{
"mfussenegger/nvim-lint",
config = function()
--[[
require("lint").linters_by_ft = {
javascript = {
"eslint_d",
},
typescript = {
"eslint_d",
},
javascriptreact = {
"eslint_d",
},
typescriptreact = {
"eslint_d",
},
}
]]
--
end,
},
{
"numToStr/Comment.nvim",
opts = {
-- add any options here
},
},
{ "akinsho/toggleterm.nvim", version = "*", config = true },
{
@ -59,7 +34,6 @@ return {
event = "InsertEnter",
config = true,
},
{ "Everblush/nvim", name = "everblush" },
{
"sainnhe/gruvbox-material",
lazy = false,
@ -101,7 +75,6 @@ return {
},
{
"nvim-telescope/telescope.nvim",
tag = "0.1.x",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
-- require("telescope").load_extension("fzf")
@ -209,6 +182,9 @@ return {
lsp.svelte.setup({
capabilities = capabilities,
})
lsp.biome.setup({
capabilities = capabilities,
})
end,
},
{