diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-30 18:20:39 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-30 18:20:39 +0200 |
commit | f8682528f6d071136b307e795338dae53e9cdf1d (patch) | |
tree | 031886deac77c3f35786fa053f5be96958400607 | |
parent | 3b77e249b5d6dfb68cd8b4e06e9f86acb9be5554 (diff) |
style: format imports
-rw-r--r-- | fnl/config/init.fnl | 46 | ||||
-rw-r--r-- | fnl/settings/init.fnl | 4 | ||||
-rw-r--r-- | fnl/settings/keymaps.fnl | 3 |
3 files changed, 28 insertions, 25 deletions
diff --git a/fnl/config/init.fnl b/fnl/config/init.fnl index a48702f..be81549 100644 --- a/fnl/config/init.fnl +++ b/fnl/config/init.fnl @@ -1,26 +1,26 @@ ;; Load all plugin configs. (module config.init {require - {_ config.impatient - _ config.autocmd - _ config.alpha - _ config.autopairs - _ config.better-escape - _ config.bufferline - _ config.cmp - _ config.colorizer - _ config.colorscheme - _ config.gitsigns - _ config.hop - _ config.lualine - _ config.ncomment - _ config.nvim-tree - _ config.orgmode - _ config.project - _ config.spectre - _ config.telescope - _ config.treesitter - _ config.which-key - _ config.zen - _ config.trim - _ config.lsp}}) + [config.impatient + config.autocmd + config.alpha + config.autopairs + config.better-escape + config.bufferline + config.cmp + config.colorizer + config.colorscheme + config.gitsigns + config.hop + config.lualine + config.ncomment + config.nvim-tree + config.orgmode + config.project + config.spectre + config.telescope + config.treesitter + config.which-key + config.zen + config.trim + config.lsp]}) diff --git a/fnl/settings/init.fnl b/fnl/settings/init.fnl index bff9c86..2b6836f 100644 --- a/fnl/settings/init.fnl +++ b/fnl/settings/init.fnl @@ -1,2 +1,4 @@ ;; Load nvim settings -(module settings {require {_ settings.options _ settings.keymaps}}) +(module settings + {require [settings.options + settings.keymaps]}) diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index 52254cd..bf68c38 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -1,5 +1,6 @@ ;; Custom keymappings. -(module settings.keymaps {autoload {nvim aniseed.nvim}}) +(module settings.keymaps + {autoload {nvim aniseed.nvim}}) (def- opts {:noremap true :silent true}) (defn- map [mode lhs rhs opt] (nvim.set_keymap mode lhs rhs opt)) |