mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2026-08-17 07:02:48 +01:00
Added dedicated lisp mode to config
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
return {
|
||||
{
|
||||
"julienvincent/nvim-paredit",
|
||||
ft = { "clojure", "fennel", "scheme", "lisp", "janet", "racket", "hy", "elisp" },
|
||||
config = function()
|
||||
require("nvim-paredit").setup({
|
||||
filetypes = {
|
||||
"clojure",
|
||||
"fennel",
|
||||
"scheme",
|
||||
"lisp",
|
||||
"janet",
|
||||
"racket",
|
||||
"hy",
|
||||
"elisp",
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
@@ -133,6 +133,7 @@ return { -- UI components and other visual elements are declared here
|
||||
{
|
||||
"HiPhish/rainbow-delimiters.nvim",
|
||||
lazy = true,
|
||||
ft = { "clojure", "fennel", "scheme", "lisp", "janet", "racket", "hy", "elisp" },
|
||||
keys = require("config.keys").rainbow_delimiters,
|
||||
config = function()
|
||||
require("rainbow-delimiters.setup").setup({})
|
||||
|
||||
Reference in New Issue
Block a user