aboutsummaryrefslogtreecommitdiff
path: root/vim/after/plugin/undofileskip.vim
blob: 90b9410c7e1654aef3aac36b0ab366ee0f32e7ee (plain) (blame)
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
" If undofileskip.vim loaded, add a few applicable paths to its list
if !exists('g:undofileskip')
  finish
endif
call extend(g:undofileskip, [
      \ '/dev/shm/*',
      \ '/usr/tmp/*',
      \ '/var/tmp/*',
      \ '*.git/*_EDITMSG',
      \ '*.git/ADD_EDIT.patch',
      \ '*.git/rebase-merge/git-rebase-todo',
      \ '~/.config/systemd/user/?*.automount.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.device.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.mount.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.path.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.service.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.scope.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.slice.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.socket.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.swap.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.target.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/?*.timer.d/.#override.conf????????????????',
      \ '~/.config/systemd/user/.#?*.automount????????????????',
      \ '~/.config/systemd/user/.#?*.device????????????????',
      \ '~/.config/systemd/user/.#?*.mount????????????????',
      \ '~/.config/systemd/user/.#?*.path????????????????',
      \ '~/.config/systemd/user/.#?*.service????????????????',
      \ '~/.config/systemd/user/.#?*.scope????????????????',
      \ '~/.config/systemd/user/.#?*.slice????????????????',
      \ '~/.config/systemd/user/.#?*.socket????????????????',
      \ '~/.config/systemd/user/.#?*.swap????????????????',
      \ '~/.config/systemd/user/.#?*.target????????????????',
      \ '~/.config/systemd/user/.#?*.timer????????????????',
      \])