mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2026-08-17 07:02:48 +01:00
Added fennel, hotpot, and org mode
This commit is contained in:
@@ -81,11 +81,13 @@ return {
|
||||
"bash",
|
||||
"c",
|
||||
"elixir",
|
||||
"fennel",
|
||||
"html",
|
||||
"lua",
|
||||
"markdown",
|
||||
"nix",
|
||||
"nu",
|
||||
"org",
|
||||
"python",
|
||||
"rust",
|
||||
"scheme",
|
||||
|
||||
@@ -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