1
0
Fork 0

nvim: various fixes

This commit is contained in:
Luca Bilke 2025-01-08 16:21:14 +01:00
parent 791645f1c3
commit 31b5f9d0c5
Signed by: luca
GPG key ID: F6E11C9BAA7C82F5
5 changed files with 25 additions and 8 deletions

View file

@ -33,7 +33,7 @@ require("lazy").setup({
{ import = "lazyvim.plugins.extras.lang.docker" },
{ import = "lazyvim.plugins.extras.lang.git" },
-- { import = "lazyvim.plugins.extras.lang.gleam" },
-- { import = "lazyvim.plugins.extras.lang.helm" },
{ import = "lazyvim.plugins.extras.lang.helm" },
{ import = "lazyvim.plugins.extras.lang.json" },
{ import = "lazyvim.plugins.extras.lang.markdown" },
-- { import = "lazyvim.plugins.extras.lang.php" },
@ -46,7 +46,6 @@ require("lazy").setup({
{ import = "lazyvim.plugins.extras.lang.yaml" },
{ import = "lazyvim.plugins.extras.lsp.neoconf" },
{ import = "lazyvim.plugins.extras.test.core" },
{ import = "lazyvim.plugins.extras.ui.mini-indentscope" },
{ import = "lazyvim.plugins.extras.ui.treesitter-context" },
{ import = "lazyvim.plugins.extras.util.dot" },
{ import = "plugins" },

View file

@ -1,8 +1,7 @@
---@type LazySpec
return {
{
"yetone/avante.nvim",
version = "*",
version = "0.0.13", -- https://github.com/yetone/avante.nvim/issues/966
event = "VeryLazy",
dependencies = {
"stevearc/dressing.nvim",

View file

@ -1,4 +1,3 @@
---@type LazySpec
return {
{ "ggandor/flit.nvim", optional = true, enabled = false },
{
@ -83,7 +82,8 @@ return {
{ "<leader>zf", function() require("zk.commands").get("ZkNotes")({ sort = { 'modified' } }) end, desc = "Find Notes" },
{ "<leader>zt", function() require("zk.commands").get("ZkTags")() end, desc = "Find Note Tags" },
{ "<leader>zf", function() require("zk.commands").get("ZkMatch")() end, desc = "Find Notes (Match Selection)", mode = { "v" } },
{ "<leader>zi", function() require("zk.commands").get("ZkInsertLinkAtSelection")() end, desc = "Insert Link", mode = { "n", "v" } },
{ "<leader>zi", function() require("zk.commands").get("ZkInsertLink")() end, desc = "Insert Link", mode = { "n" } },
-- { "<leader>zi", function() require("zk.commands").get("ZkInsertLinkAtSelection")() end, desc = "Insert Link", mode = { "v" } },
},
},
{

View file

@ -1,5 +1,7 @@
---@type LazySpec
return {
-- TODO: remove this if https://github.com/LazyVim/LazyVim/issues/5333 is fixed
{ "towolf/vim-helm", enabled = false },
{ "qvalentin/helm-ls.nvim", ft = "helm" },
{
"linux-cultist/venv-selector.nvim",
optional = true,
@ -34,6 +36,24 @@ return {
licenceKey = require("lib").get_secret("intelephense"),
},
},
basedpyright = {
settings = {
basedpyright = {
disableOrganizeImports = true,
-- analysis = {
-- diagnosticMode = "workspace",
-- },
},
},
},
bashls = {
settings = {
bashIde = {
explainshellEndpoint = "https://explainshell.com/",
enableSourceErrorDiagnostics = true,
},
},
},
},
},
},

View file

@ -1,4 +1,3 @@
---@type LazySpec
return {
{
"folke/tokyonight.nvim",