-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
.gitignore
113 lines (93 loc) · 1.58 KB
/
.gitignore
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# all ignore #
/*
/.**
## config
!/.config/
!/.config/**
### Secrets
/.config/TabNine/registration_key
/.config/espanso/user/**
/.config/systemd/**/*kite*
/.config/gh/**
!/.config/gh/config.yml
!/.config/pet/snippet.toml
### neovim
/.config/nvim/plugin/**
!/.nvim/
!/.nvim/**
### zsh
!/.zshenv
/.zfunc/**
/.config/zsh/*.local/**
/.config/zsh/.zcompdump
/.config/zsh/.zshrc.local
### VSCode
/.config/Code/**
!/.config/Code/User/*.json
### i3
/.config/i3/config.d/local/*
### sway
/.config/sway/config.d/local/*
### wezterm
/.config/wezterm/local.lua
## X
!/.xinitrc
!/.xprofile
/.config/gtk-3.0/bookmarks
## Wayland
!/.pam_environment
### fcitx
/.config/fcitx/**
!/.config/fcitx/config
!/.config/fcitx/conf/
!/.config/fcitx/conf/**
/.config/fcitx5/**
!/.config/fcitx5/config
!/.config/fcitx5/conf/
!/.config/fcitx5/conf/**
/.config/fcitx5/conf/cached_layouts*
### qutebrowser
/.config/qutebrowser/**
!/.config/qutebrowser/autoconfig.yml
!/.config/qutebrowser/greasemonkey
### CopyQ
/.config/copyq/**
!/.config/copyq/copyq.conf
## IME
!/.mozc/
!/.mozc/**
/.mozc/*.log
/.mozc/*.txt
/.mozc/*.db
/.mozc/.*
## Systemd
/.config/systemd/user/**
!/.config/systemd/user/i3-cycle-focus.service
!/.config/systemd/user/focus-last.service
## ci
!/.circleci/
!/.circleci/**
!/.github/
!/.github/**
## etc
!/.editrc
## lua
!/.stylua.toml
!/neovim.yml
!/selene.toml
## doc
!/.vale.ini
/.nvim/vale/styles/**
!/.nvim/vale/styles/config/
!/.nvim/vale/styles/config/**
!/.cspell.json
# global #
__pycache__
!/README.md
!/LICENSE
!/install.sh
!/install_scripts/
!/install_scripts/**
!.linkignore
!.gitignore
!.gitkeep