;; Autocommands for nvim. (module config.autocmd {autoload {nvim aniseed.nvim env aniseed.env a aniseed.core : lazy}}) (defn create-autocmd [event opts] (nvim.create_autocmd event opts)) (create-autocmd :FileType {:pattern [:qf :help :man :lspinfo] :command "nnoremap q :close"}) (create-autocmd :TextYankPost {:callback (lambda [] (vim.highlight.on_yank {:higroup :Visual :timeout 200}))}) (create-autocmd :FileType {:pattern :lir :callback (fn [] (tset vim.opt_local :number false) (tset vim.opt_local :relativenumber false))}) (create-autocmd :BufWinEnter {:command "setlocal formatoptions-=cro"}) (create-autocmd :FileType {:pattern :qf :command "set nobuflisted"}) (create-autocmd :FileType {:pattern [:gitcommit :markdown] :command "setlocal wrap"}) (create-autocmd :FileType {:pattern [:NeogitStatus :NeogitCommitMessage :NeogitNotification :NeogitCommitView] :command "setlocal spell!"}) (create-autocmd :TermOpen {:pattern ["term://*toggleterm#*"] :command "setlocal spell!"}) (create-autocmd :VimResized {:command "tabdo wincmd ="}) (create-autocmd :BufWritePost {:pattern :*.fnl :callback (lambda [] (env.init nvim.g.aniseed#env))}) (create-autocmd :FocusGained {:command :checktime})