diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-01-13 01:49:50 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-01-13 01:49:50 +0100 |
commit | c41f25fa0d1c882d3dd484d10666b5341dec5c92 (patch) | |
tree | 28e73c347b930daa78c14d60e8a651ec2bdb1d54 /fnl/settings | |
parent | 8c3692f3ab6e8bbe148a21f34ad5962951462766 (diff) |
Refactor
Diffstat (limited to 'fnl/settings')
-rw-r--r-- | fnl/settings/autocmds.fnl | 5 | ||||
-rw-r--r-- | fnl/settings/keymaps.fnl | 5 | ||||
-rw-r--r-- | fnl/settings/usercmds.fnl | 5 |
3 files changed, 3 insertions, 12 deletions
diff --git a/fnl/settings/autocmds.fnl b/fnl/settings/autocmds.fnl index ca361b3..cd3a27e 100644 --- a/fnl/settings/autocmds.fnl +++ b/fnl/settings/autocmds.fnl @@ -1,8 +1,5 @@ ;; Autocommands for nvim. -(fn create-autocmd [event opts] - (vim.api.nvim_create_autocmd event opts)) - (local autocmds [[:FileType {:pattern [:qf :help :man :lspinfo :spectre_panel] @@ -38,4 +35,4 @@ (each [_ autocmd (ipairs autocmds)] (match autocmd - [event opts] (create-autocmd event opts))) + [event opts] (vim.api.nvim_create_autocmd event opts))) diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index b59f68f..04073c8 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -1,8 +1,5 @@ ;; Custom keymappings. -(fn map [mode lhs rhs opt] - (vim.api.nvim_set_keymap mode lhs rhs opt)) - (local opts {:noremap true :silent true}) (local mappings [;;Remap space as leader key @@ -48,4 +45,4 @@ (each [_ mapping (ipairs mappings)] (match mapping - [mode key cmd] (map mode key cmd opts))) + [mode key cmd] (vim.api.nvim_set_keymap mode key cmd opts))) diff --git a/fnl/settings/usercmds.fnl b/fnl/settings/usercmds.fnl index 14020af..002e1b2 100644 --- a/fnl/settings/usercmds.fnl +++ b/fnl/settings/usercmds.fnl @@ -6,9 +6,6 @@ theme (. opts :theme)] ((. telescope builtin) ((. themes theme) opts)))) -(fn create-usercmd [event cmd opts] - (vim.api.nvim_create_user_command event cmd opts)) - (local usercmds [[:OrgAgendaPrompt (lambda [] (let [orgmode (require :orgmode)] @@ -87,4 +84,4 @@ (each [_ usercmd (ipairs usercmds)] (match usercmd - [event cmd opts] (create-usercmd event cmd opts))) + [event cmd opts] (vim.api.nvim_create_user_command event cmd opts))) |