summaryrefslogtreecommitdiff
path: root/fnl/config/autocmd.fnl
blob: bb9b2328963c7997ed590313e5490651f864ff4c (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;; A customizable greeter.
(module config.autocmd
  {autoload {nvim aniseed.nvim
             a    aniseed.core
             util util}})

(defn- group [name]
  (nvim.create_augroup name {:clear true}))

(defn- autocmd [event opts name]
  (nvim.create_autocmd event (a.merge! {:group (group name)} opts)))

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

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

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

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

(autocmd :FileType
         {:pattern "gitcommit"
          :command "setlocal wrap"}
         :_git)

(autocmd :FileType
         {:pattern "gitcommit"
          :command "setlocal spell"}
         :_git)

(autocmd :FileType
         {:pattern "markdown"
          :command "setlocal wrap"}
         :_markdown)

(autocmd :FileType
         {:pattern "markdown"
          :command "setlocal spell"}
         :_markdown)

(autocmd :FileType
         {:pattern "markdown"
          :command "setlocal spell"}
         :_markdown)

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

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