summaryrefslogtreecommitdiff
path: root/fnl/settings/autocmds.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-01-13 01:49:50 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-01-13 01:49:50 +0100
commitc41f25fa0d1c882d3dd484d10666b5341dec5c92 (patch)
tree28e73c347b930daa78c14d60e8a651ec2bdb1d54 /fnl/settings/autocmds.fnl
parent8c3692f3ab6e8bbe148a21f34ad5962951462766 (diff)
Refactor
Diffstat (limited to 'fnl/settings/autocmds.fnl')
-rw-r--r--fnl/settings/autocmds.fnl5
1 files changed, 1 insertions, 4 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)))