From 1d50839b9c03f77956132f776f6798140a13ac70 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Mon, 11 Apr 2022 20:45:36 +0200 Subject: style: format --- fnl/config/autocmd.fnl | 65 ++++++++++++++++++++++---------------------------- fnl/config/init.fnl | 2 +- 2 files changed, 30 insertions(+), 37 deletions(-) (limited to 'fnl/config') diff --git a/fnl/config/autocmd.fnl b/fnl/config/autocmd.fnl index e168bd5..628a670 100644 --- a/fnl/config/autocmd.fnl +++ b/fnl/config/autocmd.fnl @@ -1,39 +1,32 @@ ;; A customizable greeter. (module config.autocmd {autoload {nvim aniseed.nvim util util}}) -(defn autocmd [group cmds] - (nvim.command (.. "augroup " group)) - (nvim.command "autocmd!") - (each [_ cmd (ipairs cmds)] - (nvim.command (.. "autocmd " cmd))) - (nvim.command "augroup end")) - -(def- general-settings [ - "FileType qf,help,man,lspinfo nnoremap q :close" - "TextYankPost * silent!lua require('vim.highlight').on_yank({higroup = 'Search', timeout = 200})" - "BufWinEnter * :set formatoptions-=cro" - "FileType qf set nobuflisted"]) - -(def- git [ - "FileType gitcommit setlocal wrap" - "FileType gitcommit setlocal spell"]) - -(def- markdown [ - "FileType markdown setlocal wrap" - "FileType markdown setlocal spell"]) - -(def- auto-resize [ - "VimResized * tabdo wincmd ="]) - -(def- alpha [ - "User AlphaReady set showtabline=0 | autocmd BufUnload set showtabline=2"]) - -(def- packer [ - "BufWritePost plugins.lua source | PackerSync"]) - -(autocmd "_general_settings" general-settings) -(autocmd "_git" git) -(autocmd "_markdown" markdown) -(autocmd "_auto_resize" auto-resize) -(autocmd "_alpha" alpha) -(autocmd "packer_user_config" packer) +(defn autocmd [group cmds] (nvim.command (.. "augroup " group)) + (nvim.command :autocmd!) + (each [_ cmd (ipairs cmds)] + (nvim.command (.. "autocmd " cmd))) (nvim.command "augroup end")) + +(def- general-settings ["FileType qf,help,man,lspinfo nnoremap q :close" + "TextYankPost * silent!lua require('vim.highlight').on_yank({higroup = 'Search', timeout = 200})" + "BufWinEnter * :set formatoptions-=cro" + "FileType qf set nobuflisted"]) + +(def- git ["FileType gitcommit setlocal wrap" + "FileType gitcommit setlocal spell"]) + +(def- markdown ["FileType markdown setlocal wrap" + "FileType markdown setlocal spell"]) + +(def- auto-resize ["VimResized * tabdo wincmd ="]) + +(def- alpha + ["User AlphaReady set showtabline=0 | autocmd BufUnload set showtabline=2"]) + +(def- packer ["BufWritePost plugins.lua source | PackerSync"]) + +(autocmd :_general_settings general-settings) +(autocmd :_git git) +(autocmd :_markdown markdown) +(autocmd :_auto_resize auto-resize) +(autocmd :_alpha alpha) +(autocmd :packer_user_config packer) diff --git a/fnl/config/init.fnl b/fnl/config/init.fnl index 975288b..3ccff7d 100644 --- a/fnl/config/init.fnl +++ b/fnl/config/init.fnl @@ -1,8 +1,8 @@ ;; Load all plugin configs. (module config.init {require {_ config.impatient _ config.packer + _ config.autocmd _ config.alpha - ;;_ config.autocmd _ config.autopairs _ config.better-escape _ config.bufferline -- cgit v1.2.3-70-g09d2