1
0
Fork 0
dotfiles/config/nvim/macros/cmd.fnl

13 lines
297 B
Plaintext
Raw Normal View History

2022-05-12 19:49:19 +00:00
(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)