kitchen sink:

- add code action previews
- change indent blankline style
- more luasnip snippets
- change default mason stuff
- customize neorg more
- change notify style
- change startpage completely
- add line info to statusline
- change telescope style
- change how todo comments look
- make indentation work via treesitter
This commit is contained in:
2023-10-22 18:17:21 -04:00
parent e522d7d3fa
commit 01729e2613
30 changed files with 488 additions and 813 deletions

View File

@ -3,7 +3,7 @@ if not status_ok then
return
end
local wsphome = "~/documents/notes/"
local wsphome = os.getenv("HOME").."/documents/notes/"
neorg.setup {
load = {
["core.defaults"] = {},
@ -16,8 +16,8 @@ neorg.setup {
["core.dirman"] = {
config = {
workspaces = {
home = wsphome .. "home",
robotics = wsphome .. "robotics"
home = wsphome.."home",
robotics = wsphome.."robotics"
},
index = "index.norg",
}
@ -31,13 +31,14 @@ neorg.setup {
width = "content",
},
folds = false,
icon_preset = "varied",
icon_preset = "basic",
}
},
["core.export"] = {},
["core.completion"] = {
config = {
engine = "nvim-cmp",
name = "[Neorg]",
}
},
["core.presenter"] = {
@ -48,5 +49,3 @@ neorg.setup {
["core.integrations.telescope"] = {},
}
}
-- vim.cmd('Neorg sync-parsers')