13 lines
297 B
Text
13 lines
297 B
Text
|
(let [mod {}]
|
||
|
(fn mod.colorscheme [name]
|
||
|
`(vim.api.nvim_cmd {:cmd :colorscheme :args [,name]} []))
|
||
|
|
||
|
(fn mod.highlight [name value]
|
||
|
`(vim.api.nvim_set_hl 0 ,name ,value))
|
||
|
|
||
|
(fn mod.highlight-link [src dst]
|
||
|
`(vim.api.nvim_cmd {:cmd :highlight :args [:link ,src ,dst]} []))
|
||
|
|
||
|
mod)
|
||
|
|