uhh lsp stuff idk
This commit is contained in:
1 parent
27cd0d25ce
commit
2e4f5e200b
3 files changed
+11
-6
No files matched your search
@@ -12,6 +12,9 @@ return {
|
||||
u.cmd("<leader>fg", "Telescope live_grep")
|
||||
u.cmd("<leader>fb", "Telescope buffers")
|
||||
u.cmd("<leader>fh", "Telescope help_tags")
|
||||
u.cmd("<leader>fd", "Telescope diagnostics")
|
||||
u.cmd("<leader>fs", "Telescope lsp_document_symbols")
|
||||
u.cmd("<leader>fS", "Telescope lsp_workspace_symbols")
|
||||
end
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in new issue
Block a user