refactor(nvim): remove invalid content from lsp configs

This commit is contained in:
Price Hiller 2023-05-07 23:57:18 -05:00
parent d39e00d736
commit 366206bf9d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -177,7 +177,7 @@ lazy.setup({
"nvim-telescope/telescope-ui-select.nvim", "nvim-telescope/telescope-ui-select.nvim",
"debugloop/telescope-undo.nvim", "debugloop/telescope-undo.nvim",
{ "nvim-telescope/telescope-smart-history.nvim", dependencies = "tami5/sqlite.lua" }, { "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() config = function()
require("plugins.configs.telescope-nvim") require("plugins.configs.telescope-nvim")
@ -392,8 +392,8 @@ lazy.setup({
setopt = true, setopt = true,
relculright = false, relculright = false,
segments = { segments = {
{ text = { "%s" }, click = "v:lua.ScSa" }, { text = { "%s" }, click = "v:lua.ScSa" },
{ text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, { text = { builtin.lnumfunc }, click = "v:lua.ScLa" },
{ text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" }, { text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" },
}, },
}) })
@ -473,7 +473,7 @@ lazy.setup({
"AckslD/nvim-neoclip.lua", "AckslD/nvim-neoclip.lua",
event = "VeryLazy", event = "VeryLazy",
dependencies = { dependencies = {
{ "tami5/sqlite.lua", module = "sqlite" }, { "tami5/sqlite.lua", module = "sqlite" },
{ "nvim-telescope/telescope.nvim" }, { "nvim-telescope/telescope.nvim" },
}, },
config = function() config = function()
@ -531,6 +531,15 @@ lazy.setup({
}, },
-- Note Taking -- Note Taking
{
"mickael-menu/zk-nvim",
config = function ()
require("zk").setup({
picker = "telescope"
})
end,
event = "VeryLazy",
},
{ {
"nvim-neorg/neorg", "nvim-neorg/neorg",
build = ":Neorg sync-parsers", build = ":Neorg sync-parsers",
@ -808,8 +817,8 @@ lazy.setup({
{ cursor = "", texthl = "SmoothCursorTrailMedium" }, { cursor = "", texthl = "SmoothCursorTrailMedium" },
{ cursor = "", texthl = "SmoothCursorTrailMedium" }, { cursor = "", texthl = "SmoothCursorTrailMedium" },
{ cursor = "", texthl = "SmoothCursorTrailSmall" }, { cursor = "", texthl = "SmoothCursorTrailSmall" },
{ cursor = ".", texthl = "SmoothCursorTrailXSmall" }, { cursor = ".", texthl = "SmoothCursorTrailXSmall" },
{ cursor = ".", texthl = "SmoothCursorTrailXSmall" }, { cursor = ".", texthl = "SmoothCursorTrailXSmall" },
}, },
}, },
disabled_filetypes = { "NeogitNotification" }, disabled_filetypes = { "NeogitNotification" },