summaryrefslogtreecommitdiff
path: root/fnl/settings/autocmds.fnl
blob: 5ae8b8cf21c2b81ffd34234ede505f2b70a425b6 (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
;; Autocommands for nvim.

(fn create-autocmd [event opts]
  (vim.api.nvim_create_autocmd event opts))

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

(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 :FocusGained {:command :checktime})

(create-autocmd :TermOpen
                {:pattern "term://*toggleterm#*"
                 :callback (fn []
                             (vim.keymap.set :t :<C-h> "<Cmd>wincmd h<CR>" {})
                             (vim.keymap.set :t :<C-j> "<Cmd>wincmd j<CR>" {})
                             (vim.keymap.set :t :<C-k> "<Cmd>wincmd k<CR>" {})
                             (vim.keymap.set :t :<C-l> "<Cmd>wincmd l<CR>" {}))})