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:
@ -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')
|
||||
|
Reference in New Issue
Block a user