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 -- TODO: after switching to dep with lazy loading check out vim-startuptime
-- again -- again
-- load core utilities
_G.core = require("core") _G.core = require("core")
-- enable performance stuff -- enable performance stuff

View File

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

View File

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

View File

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

View File

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

View File

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