lsp telecsope things

This commit is contained in:
Christoph J. Scherr 2024-02-06 11:19:52 +01:00
parent 5277a4b5ac
commit d0f33b1675
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
2 changed files with 6 additions and 2 deletions

View File

@ -5,8 +5,8 @@ local M = {}
local highlights = require "custom.highlights" local highlights = require "custom.highlights"
M.ui = { M.ui = {
theme = "kanagawa", theme = "oceanic-next",
theme_toggle = { "kanagawa", "chadracula" }, theme_toggle = { "kanagawa", "oceanic-next" },
hl_override = highlights.override, hl_override = highlights.override,
hl_add = highlights.add, hl_add = highlights.add,

View File

@ -219,6 +219,10 @@ M.telescope = {
["<localleader>th"] = { "<cmd> Telescope themes <cr>", "Nvchad themes" }, ["<localleader>th"] = { "<cmd> Telescope themes <cr>", "Nvchad themes" },
["<localleader>ma"] = { "<cmd> Telescope marks <cr>", "telescope bookmarks" }, ["<localleader>ma"] = { "<cmd> Telescope marks <cr>", "telescope bookmarks" },
-- lsp stuff
["<localleader>cw"] = { "<cmd> Telescope lsp_dynamic_workspace_symbols <cr>", "telescope dynamic workspace symbols" },
["<localleader>cd"] = { "<cmd> Telescope lsp_document_symbols <cr>", "telescope document symbols" },
}, },
} }