diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index b52bb3c..d3447e2 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -12,6 +12,9 @@ return { u.cmd("fg", "Telescope live_grep") u.cmd("fb", "Telescope buffers") u.cmd("fh", "Telescope help_tags") + u.cmd("fd", "Telescope diagnostics") + u.cmd("fs", "Telescope lsp_document_symbols") + u.cmd("fS", "Telescope lsp_workspace_symbols") end }, { diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 6fd920c..ba41a51 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -1,13 +1,14 @@ return { { "nvim-neorg/neorg", - tag = "0.0.12", + build = ":Neorg sync-parsers", + dependencies = { "nvim-lua/plenary.nvim" }, config = function() require("neorg").setup { load = { ["core.defaults"] = {}, - ["core.norg.concealer"] = {}, - ["core.norg.completion"] = { + ["core.concealer"] = {}, + ["core.completion"] = { config = { engine = "nvim-cmp" } @@ -16,8 +17,6 @@ return { } } end, - dependencies = { "nvim-lua/plenary.nvim" }, - build = ":Neorg sync-parsers" }, { "folke/which-key.nvim", diff --git a/lua/plugins/visual.lua b/lua/plugins/visual.lua index 7226bb6..9fcfedc 100644 --- a/lua/plugins/visual.lua +++ b/lua/plugins/visual.lua @@ -44,7 +44,10 @@ return { dependencies = { "nvim-treesitter/nvim-treesitter" }, config = function() require("nvim-treesitter.configs").setup { - highlight = { enable = true }, + highlight = { + enable = true, + additional_vim_regex_highlighting = false, + }, textobjects = { move = { enable = true,