Compare commits

...

2 Commits

Author SHA1 Message Date
Henrik Bakken ddebef05e0 nvim drop org-mode 2025-09-11 08:45:53 +02:00
Henrik Bakken 0c8da5e9dd nvim bugfix vim-hexokinase build 2025-09-11 08:45:28 +02:00
+1 -16
View File
@@ -518,7 +518,7 @@ local function makespec_hexokinase()
return {
-- coloring of colornames
"rrethy/vim-hexokinase",
build = "cd /home/hjalmarlucius/.local/share/nvim/lazy/vim-hexokinase && make hexokinase",
build = "cd /home/hjalmarlucius/.local/share/nvim/lazy/vim-hexokinase; make hexokinase",
config = function() vim.g.Hexokinase_highlighters = { "virtual" } end,
}
end
@@ -915,20 +915,6 @@ local function makespec_gitsigns()
}
end
local function makespec_orgmode()
return {
"nvim-orgmode/orgmode",
event = "VeryLazy",
config = function()
-- Setup orgmode
require("orgmode").setup({
org_agenda_files = "~/notes/orgfiles/**/*",
org_default_notes_file = "~/notes/orgfiles/refile.org",
})
end,
}
end
local function makespec_whichkey()
return {
"folke/which-key.nvim",
@@ -1564,7 +1550,6 @@ for _, spec in ipairs({
makespec_autotag(),
makespec_lint(),
makespec_mason(),
makespec_orgmode(),
-- navigation
makespec_whichkey(),
makespec_smartsplits(),