summaryrefslogtreecommitdiff
path: root/fnl/config/autocmd.fnl
blob: a3b58d11fdbf0d50b92b0b140dff0e101d1f3815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;; Autocommands for nvim.
(module config.autocmd
  {autoload {nvim aniseed.nvim
             a    aniseed.core
             util util}})

(defn- autocmd [event opts]
  (nvim.create_autocmd event opts))

(autocmd :User
         {:pattern :AlphaReady
          :command "set showtabline=0 | autocmd BufUnload <buffer> set showtabline=2"})

(autocmd :BufEnter
         {:command "if winnr('$') == 1 && bufname() == 'NvimTree_' . tabpagenr() | quit | endif"})

(autocmd :FileType
         {:pattern [:qf :help :man :lspinfo]
          :command "nnoremap <silent> <buffer> q :close<CR>"})

(autocmd :TextYankPost
         {:callback (lambda [] (vim.highlight.on_yank {:timeout 200}))})

(autocmd :BufWinEnter
         {:command "setlocal formatoptions-=cro"})

(autocmd :FileType
         {:pattern "qf"
          :command "set nobuflisted"})

(autocmd :FileType
         {:pattern [:gitcommit :markdown]
          :command "setlocal wrap"})

(autocmd :FileType
         {:pattern [:gitcommit :markdown]
          :command "setlocal spell"})

(autocmd :VimResized
         {:command "tabdo wincmd ="})