small changes...

if you want more look at the changes, there's not that many
This commit is contained in:
2025-06-21 22:49:37 -04:00
parent 7ef68dea92
commit cd26cbb825
6 changed files with 3 additions and 11 deletions

View File

@ -1,6 +1,7 @@
-- TODO: after switching to dep with lazy loading check out vim-startuptime
-- again
-- load core utilities
_G.core = require("core")
-- enable performance stuff

View File

@ -1,6 +1,6 @@
return { "j-hui/fidget.nvim",
disable = not vim.fn.has("nvim-0.9.0"),
branch = "v1.5.0",
branch = "v1.6.1",
function()
local notification_defaults = require("fidget.notification").default_config
notification_defaults["icon"] = ""

View File

@ -13,9 +13,7 @@ return { "neovim/nvim-lspconfig",
"bashls",
"jdtls",
"lua_ls",
"stylua",
-- python
"basedpyright",

View File

@ -19,12 +19,7 @@ return { "L3MON4D3/LuaSnip",
ext_opts = {
[types.choiceNode] = {
active = {
virt_text = {{ "", "@boolean" }}
}
},
[types.insertNode] = {
active = {
virt_text = {{ "", "@constant" }}
virt_text = {{ "?", "@boolean" }}
}
}
}

View File

@ -6,7 +6,6 @@ return { "nvimtools/none-ls.nvim",
null_ls.setup {
sources = {
null_ls.builtins.formatting.stylua,
null_ls.builtins.formatting.black,
null_ls.builtins.diagnostics.mypy
},

View File

@ -1,7 +1,6 @@
return { "windwp/nvim-ts-autotag",
requires = "nvim-treesitter/nvim-treesitter",
disable = not vim.fn.has("nvim-0.9.5"),
function()
require("nvim-ts-autotag").setup {}
end