mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2026-08-18 23:32:48 +01:00
Added fennel, hotpot, and org mode
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
{
|
||||
"rktjmp/hotpot.nvim",
|
||||
lazy = false,
|
||||
},
|
||||
{
|
||||
"Olical/conjure",
|
||||
ft = { "fennel", "clojure", "scheme", "lisp" },
|
||||
config = function()
|
||||
-- Conjure configuration
|
||||
-- By default, Conjure maps local leader commands (e.g. <localleader>ee to evaluate form).
|
||||
end,
|
||||
},
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
return {
|
||||
{
|
||||
"nvim-orgmode/orgmode",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
-- Setup orgmode
|
||||
require("orgmode").setup({
|
||||
org_agenda_files = "~/orgfiles/**/*",
|
||||
org_default_notes_file = "~/orgfiles/refile.org",
|
||||
mappings = {
|
||||
prefix = "<leader>a",
|
||||
},
|
||||
})
|
||||
-- Enable org LSP
|
||||
vim.lsp.enable("org")
|
||||
end,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user