From 366206bf9d58b6117bfb48fac2a7b6ad97c70bdd Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 7 May 2023 23:57:18 -0500 Subject: [PATCH] refactor(nvim): remove invalid content from lsp configs --- dots/.config/nvim/lua/plugins/plugins.lua | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/plugins.lua b/dots/.config/nvim/lua/plugins/plugins.lua index a8510566..1fb10ed5 100755 --- a/dots/.config/nvim/lua/plugins/plugins.lua +++ b/dots/.config/nvim/lua/plugins/plugins.lua @@ -177,7 +177,7 @@ lazy.setup({ "nvim-telescope/telescope-ui-select.nvim", "debugloop/telescope-undo.nvim", { "nvim-telescope/telescope-smart-history.nvim", dependencies = "tami5/sqlite.lua" }, - { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, }, config = function() require("plugins.configs.telescope-nvim") @@ -392,8 +392,8 @@ lazy.setup({ setopt = true, relculright = false, segments = { - { text = { "%s" }, click = "v:lua.ScSa" }, - { text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, + { text = { "%s" }, click = "v:lua.ScSa" }, + { text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, { text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" }, }, }) @@ -473,7 +473,7 @@ lazy.setup({ "AckslD/nvim-neoclip.lua", event = "VeryLazy", dependencies = { - { "tami5/sqlite.lua", module = "sqlite" }, + { "tami5/sqlite.lua", module = "sqlite" }, { "nvim-telescope/telescope.nvim" }, }, config = function() @@ -531,6 +531,15 @@ lazy.setup({ }, -- Note Taking + { + "mickael-menu/zk-nvim", + config = function () + require("zk").setup({ + picker = "telescope" + }) + end, + event = "VeryLazy", + }, { "nvim-neorg/neorg", build = ":Neorg sync-parsers", @@ -808,8 +817,8 @@ lazy.setup({ { cursor = "●", texthl = "SmoothCursorTrailMedium" }, { cursor = "●", texthl = "SmoothCursorTrailMedium" }, { cursor = "•", texthl = "SmoothCursorTrailSmall" }, - { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, - { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, + { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, + { cursor = ".", texthl = "SmoothCursorTrailXSmall" }, }, }, disabled_filetypes = { "NeogitNotification" },