dotfiles-tui 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.env.example +4 -0
- data/.gitattributes +1 -0
- data/.github/workflows/publish-gem.yml +36 -0
- data/.gitignore +316 -0
- data/.shellcheckrc +1 -0
- data/.stow-local-ignore +23 -0
- data/.vscode/settings.json +2 -0
- data/Configs/aerospace/.config/aerospace/aerospace.toml +265 -0
- data/Configs/alacritty/.config/alacritty/alacritty.toml +31 -0
- data/Configs/conda/.condarc +1 -0
- data/Configs/continue/.continue/.continueignore +0 -0
- data/Configs/continue/.continue/.continuerc.json +3 -0
- data/Configs/continue/.continue/config.json +48 -0
- data/Configs/docker/.docker/completion/completion.zsh +3 -0
- data/Configs/editorconfig/.editorconfig +16 -0
- data/Configs/fzf/.fzf/completion/completion.zsh +8 -0
- data/Configs/git/.config/gitconfig/core +83 -0
- data/Configs/git/.config/gitconfig/home +20 -0
- data/Configs/git/.config/gitconfig/template.txt +7 -0
- data/Configs/git/.config/gitconfig/work +23 -0
- data/Configs/git/.gitconfig +25 -0
- data/Configs/gpg/.gnupg/.#lk0x000000015060b4e0.macBook.pro.24088 +2 -0
- data/Configs/gpg/.gnupg/gpg-agent.conf +3 -0
- data/Configs/gpg/.gnupg/openpgp-revocs.d/DE999E2ACEAE3E8EAD660459688CB4D444FB1024.rev +28 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/0FF407C984AC03CCC60D924C5B315977DF45D5D0.key +7 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/2B711D7C4A8BE25322C9966B73E6842F7E64CD38.key +7 -0
- data/Configs/gpg/.gnupg/pubring.kbx +0 -0
- data/Configs/gpg/.gnupg/trustdb.gpg +0 -0
- data/Configs/kitty/.config/kitty/current-theme.conf +80 -0
- data/Configs/kitty/.config/kitty/kitty.conf +93 -0
- data/Configs/nvim/.config/nvim/.stylua.toml +6 -0
- data/Configs/nvim/.config/nvim/README.md +9 -0
- data/Configs/nvim/.config/nvim/init.lua +37 -0
- data/Configs/nvim/.config/nvim/lazy-lock.json +29 -0
- data/Configs/nvim/.config/nvim/lua/chadrc.lua +17 -0
- data/Configs/nvim/.config/nvim/lua/configs/conform.lua +15 -0
- data/Configs/nvim/.config/nvim/lua/configs/lazy.lua +47 -0
- data/Configs/nvim/.config/nvim/lua/configs/lspconfig.lua +24 -0
- data/Configs/nvim/.config/nvim/lua/configs/null_ls.lua +27 -0
- data/Configs/nvim/.config/nvim/lua/mappings.lua +10 -0
- data/Configs/nvim/.config/nvim/lua/options.lua +6 -0
- data/Configs/nvim/.config/nvim/lua/plugins/init.lua +25 -0
- data/Configs/oh-my-posh/.config/oh-my-posh/theme/config.json +71 -0
- data/Configs/pip/.config/pip/pip.conf +3 -0
- data/Configs/python/.pythonrc +25 -0
- data/Configs/starship/.config/starship/starship.toml +134 -0
- data/Configs/starship/.config/starship/themes/frappe.toml +27 -0
- data/Configs/starship/.config/starship/themes/latte.toml +27 -0
- data/Configs/starship/.config/starship/themes/macchiato.toml +27 -0
- data/Configs/starship/.config/starship/themes/mocha.toml +27 -0
- data/Configs/tmux/.tmux.conf +21 -0
- data/Configs/wezterm/.config/wezterm/core/colors.lua +10 -0
- data/Configs/wezterm/.config/wezterm/core/font.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/helper.lua +22 -0
- data/Configs/wezterm/.config/wezterm/core/init.lua +20 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/init.lua +16 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/macos.lua +106 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/windows.lua +99 -0
- data/Configs/wezterm/.config/wezterm/core/launch.lua +41 -0
- data/Configs/wezterm/.config/wezterm/core/maximized.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/mousebindings.lua +23 -0
- data/Configs/wezterm/.config/wezterm/core/tab_title.lua +26 -0
- data/Configs/wezterm/.config/wezterm/core/window.lua +8 -0
- data/Configs/wezterm/.config/wezterm/wezterm.lua +83 -0
- data/Configs/zellij/.config/zellij/config.kdl +410 -0
- data/Configs/zellij/.config/zellij/layouts/default.kdl +159 -0
- data/Configs/zellij/.config/zellij/plugins/room.wasm +0 -0
- data/Configs/zellij/.config/zellij/plugins/zjstatus.wasm +0 -0
- data/Configs/zsh/.hushlogin +0 -0
- data/Configs/zsh/.localrc +42 -0
- data/Configs/zsh/.profile +3 -0
- data/Configs/zsh/.shellcheckrc +1 -0
- data/Configs/zsh/.zprofile +3 -0
- data/Configs/zsh/.zsh/autoload/backup_restore +84 -0
- data/Configs/zsh/.zsh/autoload/cat +8 -0
- data/Configs/zsh/.zsh/autoload/change_wallpaper +1 -0
- data/Configs/zsh/.zsh/autoload/clean_dstore +6 -0
- data/Configs/zsh/.zsh/autoload/clean_pycache +6 -0
- data/Configs/zsh/.zsh/autoload/convert_mkv_to_mp4 +14 -0
- data/Configs/zsh/.zsh/autoload/create_macos_installer +26 -0
- data/Configs/zsh/.zsh/autoload/download +71 -0
- data/Configs/zsh/.zsh/autoload/fail +2 -0
- data/Configs/zsh/.zsh/autoload/flush_dns +6 -0
- data/Configs/zsh/.zsh/autoload/info +1 -0
- data/Configs/zsh/.zsh/autoload/ls +8 -0
- data/Configs/zsh/.zsh/autoload/reset_beyond_compare +15 -0
- data/Configs/zsh/.zsh/autoload/reset_final_cut_pro +5 -0
- data/Configs/zsh/.zsh/autoload/reset_launch_pad +3 -0
- data/Configs/zsh/.zsh/autoload/reset_open_list +3 -0
- data/Configs/zsh/.zsh/autoload/speedup_terminal +6 -0
- data/Configs/zsh/.zsh/autoload/start_aria2_server +1 -0
- data/Configs/zsh/.zsh/autoload/success +1 -0
- data/Configs/zsh/.zsh/autoload/update_system +19 -0
- data/Configs/zsh/.zsh/autoload/user +1 -0
- data/Configs/zsh/.zsh/autoload/vim +9 -0
- data/Configs/zsh/.zsh/autoload/warn +1 -0
- data/Configs/zsh/.zsh/completion/aliases.zsh +3 -0
- data/Configs/zsh/.zsh/completion/completion.zsh +33 -0
- data/Configs/zsh/.zsh/completion/config.zsh +118 -0
- data/Configs/zsh/.zsh/completion/exports.zsh +108 -0
- data/Configs/zsh/.zsh/completion/fpath.zsh +8 -0
- data/Configs/zsh/.zsh_history +283 -0
- data/Configs/zsh/.zshenv +2 -0
- data/Configs/zsh/.zshrc +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +87 -0
- data/Hooks/adguard/pre.rb +7 -0
- data/Hooks/aerospace/pre.rb +8 -0
- data/Hooks/aide/post.rb +7 -0
- data/Hooks/aide/pre.rb +7 -0
- data/Hooks/alacritty/pre.rb +7 -0
- data/Hooks/alfred/pre.rb +7 -0
- data/Hooks/atuin/post.rb +27 -0
- data/Hooks/atuin/pre.rb +7 -0
- data/Hooks/bartender/pre.rb +7 -0
- data/Hooks/bun/pre.rb +7 -0
- data/Hooks/carapace/pre.rb +7 -0
- data/Hooks/cargo/pre.rb +7 -0
- data/Hooks/choosy/pre.rb +7 -0
- data/Hooks/controld/pre.rb +7 -0
- data/Hooks/core/common.rb +36 -0
- data/Hooks/core/final.rb +23 -0
- data/Hooks/core/lib/configurator.rb +593 -0
- data/Hooks/core/lib/display.rb +120 -0
- data/Hooks/core/lib/hook_config.rb +96 -0
- data/Hooks/core/lib/hook_context.rb +124 -0
- data/Hooks/core/lib/hooks.rb +45 -0
- data/Hooks/core/lib/logger.rb +23 -0
- data/Hooks/core/lib/menu.rb +70 -0
- data/Hooks/core/lib/spinner.rb +50 -0
- data/Hooks/core/lib/system.rb +78 -0
- data/Hooks/core/lib/tweaks.rb +59 -0
- data/Hooks/core/library.rb +3 -0
- data/Hooks/core/pre.rb +17 -0
- data/Hooks/ctrld/pre.rb +7 -0
- data/Hooks/deskpad/pre.rb +7 -0
- data/Hooks/fonts/pre.rb +60 -0
- data/Hooks/ghostty/pre.rb +10 -0
- data/Hooks/git/post.rb +20 -0
- data/Hooks/git/pre.rb +7 -0
- data/Hooks/gpg/post.rb +16 -0
- data/Hooks/gpg/pre.rb +7 -0
- data/Hooks/ice-hidemenubar/pre.rb +7 -0
- data/Hooks/iterm/IC Green PPL.itermcolors +344 -0
- data/Hooks/iterm/chalkboard.webp +0 -0
- data/Hooks/iterm/com.googlecode.iterm2.plist +2371 -0
- data/Hooks/iterm/post.rb +7 -0
- data/Hooks/iterm/pre.rb +7 -0
- data/Hooks/jujutsu/post.rb +13 -0
- data/Hooks/jujutsu/pre.rb +7 -0
- data/Hooks/keka/pre.rb +7 -0
- data/Hooks/kitty/pre.rb +7 -0
- data/Hooks/lazyvim/pre.rb +7 -0
- data/Hooks/lima/pre.rb +7 -0
- data/Hooks/little-snitch/pre.rb +7 -0
- data/Hooks/microsoft-edge/pre.rb +7 -0
- data/Hooks/mos/pre.rb +7 -0
- data/Hooks/nvchad/pre.rb +7 -0
- data/Hooks/oh-my-posh/config.json +58 -0
- data/Hooks/oh-my-posh/post.rb +7 -0
- data/Hooks/oh-my-posh/pre.rb +7 -0
- data/Hooks/pearcleaner/pre.rb +7 -0
- data/Hooks/pycharm/pre.rb +7 -0
- data/Hooks/raindropio/pre.rb +7 -0
- data/Hooks/rectangle/RectangleConfig.json +258 -0
- data/Hooks/rectangle/com.knollsoft.Rectangle.plist +0 -0
- data/Hooks/rectangle/post.rb +22 -0
- data/Hooks/rectangle/pre.rb +7 -0
- data/Hooks/slack/pre.rb +7 -0
- data/Hooks/soundsource/pre.rb +7 -0
- data/Hooks/ssh/post.rb +8 -0
- data/Hooks/starship/pre.rb +7 -0
- data/Hooks/sublime_text/post.rb +25 -0
- data/Hooks/sublime_text/pre.rb +7 -0
- data/Hooks/swiftformat-for-xcode/pre.rb +7 -0
- data/Hooks/syncthing/pre.rb +7 -0
- data/Hooks/synology/pre.rb +7 -0
- data/Hooks/tailscale/pre.rb +7 -0
- data/Hooks/tmux/post.rb +7 -0
- data/Hooks/tmux/pre.rb +7 -0
- data/Hooks/topnotch/pre.rb +7 -0
- data/Hooks/transmission/pre.rb +7 -0
- data/Hooks/vscode/extensions.txt +16 -0
- data/Hooks/vscode/keybindings.json +26 -0
- data/Hooks/vscode/post.rb +29 -0
- data/Hooks/vscode/pre.rb +9 -0
- data/Hooks/vscode/settings.json +139 -0
- data/Hooks/vscode/style.css +29 -0
- data/Hooks/wezterm/pre.rb +7 -0
- data/Hooks/wins/pre.rb +7 -0
- data/Hooks/zed/pre.rb +7 -0
- data/Hooks/zellij/post.rb +7 -0
- data/Hooks/zellij/pre.rb +7 -0
- data/Hooks/zoxide/pre.rb +7 -0
- data/Hooks/zsh/pre.rb +19 -0
- data/LICENSE +21 -0
- data/README.md +100 -0
- data/bin/dotfiles-tui +6 -0
- data/bootstrap.rb +186 -0
- data/dotfiles-tui.gemspec +47 -0
- data/lib/dotfiles_tui/version.rb +5 -0
- data/lib/dotfiles_tui.rb +15 -0
- metadata +275 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 36ddedddb94b77eb0cda64a8b13d2c78dda58bbe093fc156ef23140bfe397330
|
|
4
|
+
data.tar.gz: cc17001f0f4e5bb4b8407d31df62e44dcaff23f2e060840c3e6d55bf8eb164f2
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 10168828d6153404127dd50d00124defd742f62db9c4f30b836575785806596d0f055318df4278ab9ddef7ebdc3bb24982210526b50a84526d583d441bd04749
|
|
7
|
+
data.tar.gz: b1ec4054719a8061fee0925beab1e60d937d470dbc00412682e33a48b079dfd1d63af63c2e13acf7717c1e3392bd867929314eda6a320c0481637e6f8b324d01
|
data/.env.example
ADDED
data/.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Hooks/synology/SynologyClient.pkg filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Publish Gem to RubyGems
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
name: Build + Publish
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
packages: write
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Set up Ruby
|
|
20
|
+
uses: ruby/setup-ruby@v1
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: '3.2'
|
|
23
|
+
bundler-cache: true
|
|
24
|
+
|
|
25
|
+
- name: Build gem
|
|
26
|
+
run: gem build dotfiles-tui.gemspec
|
|
27
|
+
|
|
28
|
+
- name: Publish to RubyGems
|
|
29
|
+
run: |
|
|
30
|
+
mkdir -p $HOME/.gem
|
|
31
|
+
touch $HOME/.gem/credentials
|
|
32
|
+
chmod 0600 $HOME/.gem/credentials
|
|
33
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
34
|
+
gem push *.gem
|
|
35
|
+
env:
|
|
36
|
+
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
data/.gitignore
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux,python,powershell,zsh
|
|
2
|
+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux,python,powershell,zsh
|
|
3
|
+
|
|
4
|
+
### Linux ###
|
|
5
|
+
*~
|
|
6
|
+
|
|
7
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
8
|
+
.fuse_hidden*
|
|
9
|
+
|
|
10
|
+
# KDE directory preferences
|
|
11
|
+
.directory
|
|
12
|
+
|
|
13
|
+
# Linux trash folder which might appear on any partition or disk
|
|
14
|
+
.Trash-*
|
|
15
|
+
|
|
16
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
|
17
|
+
.nfs*
|
|
18
|
+
|
|
19
|
+
### macOS ###
|
|
20
|
+
# General
|
|
21
|
+
**/.DS_Store
|
|
22
|
+
.AppleDouble
|
|
23
|
+
.LSOverride
|
|
24
|
+
|
|
25
|
+
# Icon must end with two \r
|
|
26
|
+
Icon
|
|
27
|
+
|
|
28
|
+
# Thumbnails
|
|
29
|
+
._*
|
|
30
|
+
|
|
31
|
+
# Files that might appear in the root of a volume
|
|
32
|
+
.DocumentRevisions-V100
|
|
33
|
+
.fseventsd
|
|
34
|
+
.Spotlight-V100
|
|
35
|
+
.TemporaryItems
|
|
36
|
+
.Trashes
|
|
37
|
+
.VolumeIcon.icns
|
|
38
|
+
.com.apple.timemachine.donotpresent
|
|
39
|
+
|
|
40
|
+
# Directories potentially created on remote AFP share
|
|
41
|
+
.AppleDB
|
|
42
|
+
.AppleDesktop
|
|
43
|
+
Network Trash Folder
|
|
44
|
+
Temporary Items
|
|
45
|
+
.apdisk
|
|
46
|
+
|
|
47
|
+
### macOS Patch ###
|
|
48
|
+
# iCloud generated files
|
|
49
|
+
*.icloud
|
|
50
|
+
|
|
51
|
+
### PowerShell ###
|
|
52
|
+
# Exclude packaged modules
|
|
53
|
+
*.zip
|
|
54
|
+
|
|
55
|
+
# Exclude .NET assemblies from source
|
|
56
|
+
*.dll
|
|
57
|
+
|
|
58
|
+
### Python ###
|
|
59
|
+
# Byte-compiled / optimized / DLL files
|
|
60
|
+
__pycache__/
|
|
61
|
+
*.py[cod]
|
|
62
|
+
*$py.class
|
|
63
|
+
|
|
64
|
+
# C extensions
|
|
65
|
+
*.so
|
|
66
|
+
|
|
67
|
+
# Distribution / packaging
|
|
68
|
+
.Python
|
|
69
|
+
build/
|
|
70
|
+
develop-eggs/
|
|
71
|
+
dist/
|
|
72
|
+
downloads/
|
|
73
|
+
eggs/
|
|
74
|
+
.eggs/
|
|
75
|
+
!lib/
|
|
76
|
+
!Hooks/core/lib/
|
|
77
|
+
!lib/dotfiles_tui/
|
|
78
|
+
lib64/
|
|
79
|
+
parts/
|
|
80
|
+
sdist/
|
|
81
|
+
var/
|
|
82
|
+
wheels/
|
|
83
|
+
share/python-wheels/
|
|
84
|
+
*.egg-info/
|
|
85
|
+
.installed.cfg
|
|
86
|
+
*.egg
|
|
87
|
+
MANIFEST
|
|
88
|
+
|
|
89
|
+
# PyInstaller
|
|
90
|
+
# Usually these files are written by a python script from a template
|
|
91
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
92
|
+
*.manifest
|
|
93
|
+
*.spec
|
|
94
|
+
|
|
95
|
+
# Installer logs
|
|
96
|
+
pip-log.txt
|
|
97
|
+
pip-delete-this-directory.txt
|
|
98
|
+
|
|
99
|
+
# Unit test / coverage reports
|
|
100
|
+
htmlcov/
|
|
101
|
+
.tox/
|
|
102
|
+
.nox/
|
|
103
|
+
.coverage
|
|
104
|
+
.coverage.*
|
|
105
|
+
.cache
|
|
106
|
+
nosetests.xml
|
|
107
|
+
coverage.xml
|
|
108
|
+
*.cover
|
|
109
|
+
*.py,cover
|
|
110
|
+
.hypothesis/
|
|
111
|
+
.pytest_cache/
|
|
112
|
+
cover/
|
|
113
|
+
|
|
114
|
+
# Translations
|
|
115
|
+
*.mo
|
|
116
|
+
*.pot
|
|
117
|
+
|
|
118
|
+
# Django stuff:
|
|
119
|
+
*.log
|
|
120
|
+
local_settings.py
|
|
121
|
+
db.sqlite3
|
|
122
|
+
db.sqlite3-journal
|
|
123
|
+
|
|
124
|
+
# Flask stuff:
|
|
125
|
+
instance/
|
|
126
|
+
.webassets-cache
|
|
127
|
+
|
|
128
|
+
# Scrapy stuff:
|
|
129
|
+
.scrapy
|
|
130
|
+
|
|
131
|
+
# Sphinx documentation
|
|
132
|
+
docs/_build/
|
|
133
|
+
|
|
134
|
+
# PyBuilder
|
|
135
|
+
.pybuilder/
|
|
136
|
+
target/
|
|
137
|
+
|
|
138
|
+
# Jupyter Notebook
|
|
139
|
+
.ipynb_checkpoints
|
|
140
|
+
|
|
141
|
+
# IPython
|
|
142
|
+
profile_default/
|
|
143
|
+
ipython_config.py
|
|
144
|
+
|
|
145
|
+
# pyenv
|
|
146
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
147
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
148
|
+
# .python-version
|
|
149
|
+
|
|
150
|
+
# pipenv
|
|
151
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
152
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
153
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
154
|
+
# install all needed dependencies.
|
|
155
|
+
#Pipfile.lock
|
|
156
|
+
|
|
157
|
+
# poetry
|
|
158
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
159
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
160
|
+
# commonly ignored for libraries.
|
|
161
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
162
|
+
#poetry.lock
|
|
163
|
+
|
|
164
|
+
# pdm
|
|
165
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
166
|
+
#pdm.lock
|
|
167
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
168
|
+
# in version control.
|
|
169
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
170
|
+
.pdm.toml
|
|
171
|
+
|
|
172
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
173
|
+
__pypackages__/
|
|
174
|
+
|
|
175
|
+
# Celery stuff
|
|
176
|
+
celerybeat-schedule
|
|
177
|
+
celerybeat.pid
|
|
178
|
+
|
|
179
|
+
# SageMath parsed files
|
|
180
|
+
*.sage.py
|
|
181
|
+
|
|
182
|
+
# Environments
|
|
183
|
+
.env
|
|
184
|
+
.venv
|
|
185
|
+
env/
|
|
186
|
+
venv/
|
|
187
|
+
ENV/
|
|
188
|
+
env.bak/
|
|
189
|
+
venv.bak/
|
|
190
|
+
|
|
191
|
+
# Spyder project settings
|
|
192
|
+
.spyderproject
|
|
193
|
+
.spyproject
|
|
194
|
+
|
|
195
|
+
# Rope project settings
|
|
196
|
+
.ropeproject
|
|
197
|
+
|
|
198
|
+
# mkdocs documentation
|
|
199
|
+
/site
|
|
200
|
+
|
|
201
|
+
# mypy
|
|
202
|
+
.mypy_cache/
|
|
203
|
+
.dmypy.json
|
|
204
|
+
dmypy.json
|
|
205
|
+
|
|
206
|
+
# Pyre type checker
|
|
207
|
+
.pyre/
|
|
208
|
+
|
|
209
|
+
# pytype static type analyzer
|
|
210
|
+
.pytype/
|
|
211
|
+
|
|
212
|
+
# Cython debug symbols
|
|
213
|
+
cython_debug/
|
|
214
|
+
|
|
215
|
+
# PyCharm
|
|
216
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
217
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
218
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
219
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
220
|
+
#.idea/
|
|
221
|
+
|
|
222
|
+
### Python Patch ###
|
|
223
|
+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
|
224
|
+
poetry.toml
|
|
225
|
+
|
|
226
|
+
# ruff
|
|
227
|
+
.ruff_cache/
|
|
228
|
+
|
|
229
|
+
# LSP config files
|
|
230
|
+
pyrightconfig.json
|
|
231
|
+
|
|
232
|
+
### Windows ###
|
|
233
|
+
# Windows thumbnail cache files
|
|
234
|
+
Thumbs.db
|
|
235
|
+
Thumbs.db:encryptable
|
|
236
|
+
ehthumbs.db
|
|
237
|
+
ehthumbs_vista.db
|
|
238
|
+
|
|
239
|
+
# Dump file
|
|
240
|
+
*.stackdump
|
|
241
|
+
|
|
242
|
+
# Folder config file
|
|
243
|
+
[Dd]esktop.ini
|
|
244
|
+
|
|
245
|
+
# Recycle Bin used on file shares
|
|
246
|
+
$RECYCLE.BIN/
|
|
247
|
+
|
|
248
|
+
# Windows Installer files
|
|
249
|
+
*.cab
|
|
250
|
+
*.msi
|
|
251
|
+
*.msix
|
|
252
|
+
*.msm
|
|
253
|
+
*.msp
|
|
254
|
+
|
|
255
|
+
# Windows shortcuts
|
|
256
|
+
*.lnk
|
|
257
|
+
|
|
258
|
+
### Zsh ###
|
|
259
|
+
# Zsh compiled script + zrecompile backup
|
|
260
|
+
*.zwc
|
|
261
|
+
*.zwc.old
|
|
262
|
+
|
|
263
|
+
# Zsh completion-optimization dumpfile
|
|
264
|
+
*zcompdump*
|
|
265
|
+
|
|
266
|
+
# Zsh sessions
|
|
267
|
+
.zsh_sessions
|
|
268
|
+
|
|
269
|
+
# Zsh zcalc history
|
|
270
|
+
.zcalc_history
|
|
271
|
+
|
|
272
|
+
# A popular plugin manager's files
|
|
273
|
+
._zinit
|
|
274
|
+
.zinit_lstupd
|
|
275
|
+
|
|
276
|
+
# zdharma/zshelldoc tool's files
|
|
277
|
+
zsdoc/data
|
|
278
|
+
|
|
279
|
+
# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files
|
|
280
|
+
# (when set-up to store the history in the local directory)
|
|
281
|
+
.directory_history
|
|
282
|
+
|
|
283
|
+
# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files
|
|
284
|
+
# (for Zsh plugins using Python)
|
|
285
|
+
|
|
286
|
+
# Zunit tests' output
|
|
287
|
+
/tests/_output/*
|
|
288
|
+
!/tests/_output/.gitkeep
|
|
289
|
+
|
|
290
|
+
# ignore local continue
|
|
291
|
+
Configs/continue/.continue/.migrations/
|
|
292
|
+
Configs/continue/.continue/out/
|
|
293
|
+
Configs/continue/.continue/index/
|
|
294
|
+
Configs/continue/.continue/types/
|
|
295
|
+
Configs/continue/.continue/config.ts
|
|
296
|
+
Configs/continue/.continue/package.json
|
|
297
|
+
Configs/continue/.continue/index/autocompleteCache.sqlite
|
|
298
|
+
Configs/continue/.continue/tsconfig.json
|
|
299
|
+
Configs/continue/.continue/dev_data/
|
|
300
|
+
Configs/continue/.continue/sessions/
|
|
301
|
+
|
|
302
|
+
# Secrets
|
|
303
|
+
.env
|
|
304
|
+
Configs/ssh/.ssh/
|
|
305
|
+
Configs/aws/.aws/
|
|
306
|
+
Configs/zsh/.zsh/completion/expo# Secrets
|
|
307
|
+
.env
|
|
308
|
+
Configs/ssh/.ssh/
|
|
309
|
+
Configs/aws/.aws/
|
|
310
|
+
# ignore secrets path
|
|
311
|
+
Configs/zsh/.zsh/completion/secrets.zsh
|
|
312
|
+
|
|
313
|
+
# ignore built gem files
|
|
314
|
+
*.gem
|
|
315
|
+
|
|
316
|
+
https://www.toptal.com/developers/gitignore/api/macos,windows,linux,python,powershell,zsh
|
data/.shellcheckrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
exclude=SC2230
|
data/.stow-local-ignore
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
\.DS_Store
|
|
2
|
+
|
|
3
|
+
RCS
|
|
4
|
+
.+,v
|
|
5
|
+
|
|
6
|
+
CVS
|
|
7
|
+
\.\#.+ # CVS conflict files / emacs lock files
|
|
8
|
+
\.cvsignore
|
|
9
|
+
|
|
10
|
+
\.svn
|
|
11
|
+
_darcs
|
|
12
|
+
\.hg
|
|
13
|
+
|
|
14
|
+
\.git
|
|
15
|
+
\.gitignore
|
|
16
|
+
\.gitmodules
|
|
17
|
+
|
|
18
|
+
.+~ # emacs backup files
|
|
19
|
+
\#.*\# # emacs autosave files
|
|
20
|
+
|
|
21
|
+
^/README.*
|
|
22
|
+
^/LICENSE.*
|
|
23
|
+
^/COPYING
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
# Place a copy of this config to ~/.aerospace.toml
|
|
2
|
+
# After that, you can edit ~/.aerospace.toml to your liking
|
|
3
|
+
|
|
4
|
+
# You can use it to add commands that run after login to macOS user session.
|
|
5
|
+
# 'start-at-login' needs to be 'true' for 'after-login-command' to work
|
|
6
|
+
# Available commands: https://nikitabobko.github.io/AeroSpace/commands
|
|
7
|
+
after-login-command = []
|
|
8
|
+
|
|
9
|
+
# You can use it to add commands that run after AeroSpace startup.
|
|
10
|
+
# 'after-startup-command' is run after 'after-login-command'
|
|
11
|
+
# Available commands : https://nikitabobko.github.io/AeroSpace/commands
|
|
12
|
+
# after-startup-command = []
|
|
13
|
+
after-startup-command = [
|
|
14
|
+
# JankyBorders has a built-in detection of already running process,
|
|
15
|
+
# so it won't be run twice on AeroSpace restart
|
|
16
|
+
# 'exec-and-forget borders active_color=0xffe1e3e4 inactive_color=0xff494d64 width=5.0', # original
|
|
17
|
+
'exec-and-forget borders active_color=active_color=0xff00ff00 inactive_color=0xffe1e3e4 width=10.0', # Green Active
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
# Start AeroSpace at login
|
|
21
|
+
start-at-login = true
|
|
22
|
+
|
|
23
|
+
# Normalizations. See: https://nikitabobko.github.io/AeroSpace/guide#normalization
|
|
24
|
+
enable-normalization-flatten-containers = true
|
|
25
|
+
enable-normalization-opposite-orientation-for-nested-containers = true
|
|
26
|
+
|
|
27
|
+
# See: https://nikitabobko.github.io/AeroSpace/guide#layouts
|
|
28
|
+
# The 'accordion-padding' specifies the size of accordion padding
|
|
29
|
+
# You can set 0 to disable the padding feature
|
|
30
|
+
accordion-padding = 0
|
|
31
|
+
|
|
32
|
+
# Possible values: tiles|accordion
|
|
33
|
+
default-root-container-layout = 'tiles'
|
|
34
|
+
|
|
35
|
+
# Possible values: horizontal|vertical|auto
|
|
36
|
+
# 'auto' means: wide monitor (anything wider than high) gets horizontal orientation,
|
|
37
|
+
# tall monitor (anything higher than wide) gets vertical orientation
|
|
38
|
+
default-root-container-orientation = 'auto'
|
|
39
|
+
|
|
40
|
+
# Mouse follows focus when focused monitor changes
|
|
41
|
+
# Drop it from your config, if you don't like this behavior
|
|
42
|
+
# See https://nikitabobko.github.io/AeroSpace/guide#on-focus-changed-callbacks
|
|
43
|
+
# See https://nikitabobko.github.io/AeroSpace/commands#move-mouse
|
|
44
|
+
# Fallback value (if you omit the key): on-focused-monitor-changed = []
|
|
45
|
+
on-focused-monitor-changed = ['move-mouse monitor-lazy-center']
|
|
46
|
+
|
|
47
|
+
# You can effectively turn off macOS "Hide application" (cmd-h) feature by toggling this flag
|
|
48
|
+
# Useful if you don't use this macOS feature, but accidentally hit cmd-h or cmd-alt-h key
|
|
49
|
+
# Also see: https://nikitabobko.github.io/AeroSpace/goodness#disable-hide-app
|
|
50
|
+
automatically-unhide-macos-hidden-apps = false
|
|
51
|
+
|
|
52
|
+
# Possible values: (qwerty|dvorak)
|
|
53
|
+
# See https://nikitabobko.github.io/AeroSpace/guide#key-mapping
|
|
54
|
+
[key-mapping]
|
|
55
|
+
preset = 'qwerty'
|
|
56
|
+
|
|
57
|
+
# Gaps between windows (inner-*) and between monitor edges (outer-*).
|
|
58
|
+
# Possible values:
|
|
59
|
+
# - Constant: gaps.outer.top = 8
|
|
60
|
+
# - Per monitor: gaps.outer.top = [{ monitor.main = 16 }, { monitor."some-pattern" = 32 }, 24]
|
|
61
|
+
# In this example, 24 is a default value when there is no match.
|
|
62
|
+
# Monitor pattern is the same as for 'workspace-to-monitor-force-assignment'.
|
|
63
|
+
# See: https://nikitabobko.github.io/AeroSpace/guide#assign-workspaces-to-monitors
|
|
64
|
+
[gaps]
|
|
65
|
+
inner.horizontal = 5
|
|
66
|
+
inner.vertical = 5
|
|
67
|
+
outer.left = 2
|
|
68
|
+
outer.right = 2
|
|
69
|
+
outer.bottom = 1
|
|
70
|
+
outer.top = 1
|
|
71
|
+
|
|
72
|
+
# 'main' binding mode declaration
|
|
73
|
+
# See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
|
|
74
|
+
# 'main' binding mode must be always presented
|
|
75
|
+
# Fallback value (if you omit the key): mode.main.binding = {}
|
|
76
|
+
[mode.main.binding]
|
|
77
|
+
|
|
78
|
+
# All possible keys:
|
|
79
|
+
# - Letters. a, b, c, ..., z
|
|
80
|
+
# - Numbers. 0, 1, 2, ..., 9
|
|
81
|
+
# - Keypad numbers. keypad0, keypad1, keypad2, ..., keypad9
|
|
82
|
+
# - F-keys. f1, f2, ..., f20
|
|
83
|
+
# - Special keys. minus, equal, period, comma, slash, backslash, quote, semicolon, backtick,
|
|
84
|
+
# leftSquareBracket, rightSquareBracket, space, enter, esc, backspace, tab
|
|
85
|
+
# - Keypad special. keypadClear, keypadDecimalMark, keypadDivide, keypadEnter, keypadEqual,
|
|
86
|
+
# keypadMinus, keypadMultiply, keypadPlus
|
|
87
|
+
# - Arrows. left, down, up, right
|
|
88
|
+
|
|
89
|
+
# All possible modifiers: cmd, alt, ctrl, shift
|
|
90
|
+
|
|
91
|
+
# All possible commands: https://nikitabobko.github.io/AeroSpace/commands
|
|
92
|
+
|
|
93
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#exec-and-forget
|
|
94
|
+
# You can uncomment the following lines to open up terminal with alt + enter shortcut (like in i3)
|
|
95
|
+
# alt-enter = '''exec-and-forget osascript -e '
|
|
96
|
+
# tell application "Wezterm"
|
|
97
|
+
# do script
|
|
98
|
+
# activate
|
|
99
|
+
# end tell'
|
|
100
|
+
# '''
|
|
101
|
+
|
|
102
|
+
# other way to do the same thing via direct path
|
|
103
|
+
alt-enter = 'exec-and-forget open -n /Applications/WezTerm.app'
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#layout
|
|
107
|
+
alt-slash = 'layout tiles horizontal vertical'
|
|
108
|
+
alt-comma = 'layout accordion horizontal vertical'
|
|
109
|
+
|
|
110
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#focus
|
|
111
|
+
alt-h = 'focus left'
|
|
112
|
+
alt-j = 'focus down'
|
|
113
|
+
alt-k = 'focus up'
|
|
114
|
+
alt-l = 'focus right'
|
|
115
|
+
|
|
116
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#move
|
|
117
|
+
|
|
118
|
+
alt-shift-h = 'move left'
|
|
119
|
+
alt-shift-j = 'move down'
|
|
120
|
+
alt-shift-k = 'move up'
|
|
121
|
+
alt-shift-l = 'move right'
|
|
122
|
+
|
|
123
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#resize
|
|
124
|
+
alt-shift-minus = 'resize smart -50'
|
|
125
|
+
alt-shift-equal = 'resize smart +50'
|
|
126
|
+
|
|
127
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#workspace
|
|
128
|
+
alt-1 = 'workspace 1'
|
|
129
|
+
alt-2 = 'workspace 2'
|
|
130
|
+
alt-3 = 'workspace 3'
|
|
131
|
+
alt-4 = 'workspace 4'
|
|
132
|
+
# alt-5 = 'workspace 5'
|
|
133
|
+
# alt-6 = 'workspace 6'
|
|
134
|
+
# alt-7 = 'workspace 7'
|
|
135
|
+
# alt-8 = 'workspace 8'
|
|
136
|
+
# alt-9 = 'workspace 9'
|
|
137
|
+
alt-a = 'workspace A' # In your config, you can drop workspace bindings that you don't need
|
|
138
|
+
alt-b = 'workspace B'
|
|
139
|
+
alt-c = 'workspace C'
|
|
140
|
+
alt-d = 'workspace D'
|
|
141
|
+
# alt-e = 'workspace E'
|
|
142
|
+
# alt-f = 'workspace F'
|
|
143
|
+
# alt-g = 'workspace G'
|
|
144
|
+
# alt-i = 'workspace I'
|
|
145
|
+
# alt-m = 'workspace M'
|
|
146
|
+
# alt-n = 'workspace N'
|
|
147
|
+
# alt-o = 'workspace O'
|
|
148
|
+
# alt-p = 'workspace P'
|
|
149
|
+
# alt-q = 'workspace Q'
|
|
150
|
+
# alt-r = 'workspace R'
|
|
151
|
+
# alt-s = 'workspace S'
|
|
152
|
+
# alt-t = 'workspace T'
|
|
153
|
+
# alt-u = 'workspace U'
|
|
154
|
+
# alt-v = 'workspace V'
|
|
155
|
+
# alt-w = 'workspace W'
|
|
156
|
+
# alt-x = 'workspace X'
|
|
157
|
+
# alt-y = 'workspace Y'
|
|
158
|
+
# alt-z = 'workspace Z'
|
|
159
|
+
|
|
160
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#move-node-to-workspace
|
|
161
|
+
alt-shift-1 = 'move-node-to-workspace 1'
|
|
162
|
+
alt-shift-2 = 'move-node-to-workspace 2'
|
|
163
|
+
alt-shift-3 = 'move-node-to-workspace 3'
|
|
164
|
+
alt-shift-4 = 'move-node-to-workspace 4'
|
|
165
|
+
# alt-shift-5 = 'move-node-to-workspace 5'
|
|
166
|
+
# alt-shift-6 = 'move-node-to-workspace 6'
|
|
167
|
+
# alt-shift-7 = 'move-node-to-workspace 7'
|
|
168
|
+
# alt-shift-8 = 'move-node-to-workspace 8'
|
|
169
|
+
# alt-shift-9 = 'move-node-to-workspace 9'
|
|
170
|
+
alt-shift-a = 'move-node-to-workspace A'
|
|
171
|
+
alt-shift-b = 'move-node-to-workspace B'
|
|
172
|
+
alt-shift-c = 'move-node-to-workspace C'
|
|
173
|
+
alt-shift-d = 'move-node-to-workspace D'
|
|
174
|
+
# alt-shift-e = 'move-node-to-workspace E'
|
|
175
|
+
# alt-shift-f = 'move-node-to-workspace F'
|
|
176
|
+
# alt-shift-g = 'move-node-to-workspace G'
|
|
177
|
+
# alt-shift-i = 'move-node-to-workspace I'
|
|
178
|
+
# alt-shift-m = 'move-node-to-workspace M'
|
|
179
|
+
# alt-shift-n = 'move-node-to-workspace N'
|
|
180
|
+
# alt-shift-o = 'move-node-to-workspace O'
|
|
181
|
+
# alt-shift-p = 'move-node-to-workspace P'
|
|
182
|
+
# alt-shift-q = 'move-node-to-workspace Q'
|
|
183
|
+
# alt-shift-r = 'move-node-to-workspace R'
|
|
184
|
+
# alt-shift-s = 'move-node-to-workspace S'
|
|
185
|
+
# alt-shift-t = 'move-node-to-workspace T'
|
|
186
|
+
# alt-shift-u = 'move-node-to-workspace U'
|
|
187
|
+
# alt-shift-v = 'move-node-to-workspace V'
|
|
188
|
+
# alt-shift-w = 'move-node-to-workspace W'
|
|
189
|
+
# alt-shift-x = 'move-node-to-workspace X'
|
|
190
|
+
# alt-shift-y = 'move-node-to-workspace Y'
|
|
191
|
+
# alt-shift-z = 'move-node-to-workspace Z'
|
|
192
|
+
|
|
193
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#workspace-back-and-forth
|
|
194
|
+
alt-tab = 'workspace-back-and-forth'
|
|
195
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#move-workspace-to-monitor
|
|
196
|
+
alt-shift-tab = 'move-workspace-to-monitor --wrap-around next'
|
|
197
|
+
|
|
198
|
+
# See: https://nikitabobko.github.io/AeroSpace/commands#mode
|
|
199
|
+
alt-shift-semicolon = 'mode service'
|
|
200
|
+
|
|
201
|
+
# 'service' binding mode declaration.
|
|
202
|
+
# See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
|
|
203
|
+
[mode.service.binding]
|
|
204
|
+
esc = ['reload-config', 'mode main']
|
|
205
|
+
r = ['flatten-workspace-tree', 'mode main'] # reset layout
|
|
206
|
+
f = [
|
|
207
|
+
'layout floating tiling',
|
|
208
|
+
'mode main',
|
|
209
|
+
] # Toggle between floating and tiling layout
|
|
210
|
+
backspace = ['close-all-windows-but-current', 'mode main']
|
|
211
|
+
|
|
212
|
+
# sticky is not yet supported https://github.com/nikitabobko/AeroSpace/issues/2
|
|
213
|
+
#s = ['layout sticky tiling', 'mode main']
|
|
214
|
+
|
|
215
|
+
alt-shift-h = ['join-with left', 'mode main']
|
|
216
|
+
alt-shift-j = ['join-with down', 'mode main']
|
|
217
|
+
alt-shift-k = ['join-with up', 'mode main']
|
|
218
|
+
alt-shift-l = ['join-with right', 'mode main']
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
# appplication specific setting, set to floating on load
|
|
222
|
+
|
|
223
|
+
[[on-window-detected]]
|
|
224
|
+
if.app-id = "com.apple.mail"
|
|
225
|
+
run = ['move-node-to-workspace 1']
|
|
226
|
+
|
|
227
|
+
[[on-window-detected]]
|
|
228
|
+
if.app-id = "com.apple.Safari"
|
|
229
|
+
run = ['move-node-to-workspace 2']
|
|
230
|
+
|
|
231
|
+
[[on-window-detected]]
|
|
232
|
+
if.app-id = "com.microsoft.edgemac"
|
|
233
|
+
run = ['move-node-to-workspace 3']
|
|
234
|
+
|
|
235
|
+
[[on-window-detected]]
|
|
236
|
+
if.app-id = "com.microsoft.VSCode"
|
|
237
|
+
run = ['move-node-to-workspace 4']
|
|
238
|
+
|
|
239
|
+
[[on-window-detected]]
|
|
240
|
+
if.app-id = "com.github.wez.wezterm"
|
|
241
|
+
run = ['move-node-to-workspace 4']
|
|
242
|
+
|
|
243
|
+
[[on-window-detected]]
|
|
244
|
+
if.app-id = "com.vmware.fusion"
|
|
245
|
+
run = ['move-node-to-workspace A']
|
|
246
|
+
|
|
247
|
+
[[on-window-detected]]
|
|
248
|
+
if.app-id = "com.utmapp.UTM"
|
|
249
|
+
run = ['move-node-to-workspace A']
|
|
250
|
+
|
|
251
|
+
[[on-window-detected]]
|
|
252
|
+
if.app-id = "com.apple.finder"
|
|
253
|
+
run = ['layout floating']
|
|
254
|
+
|
|
255
|
+
[[on-window-detected]]
|
|
256
|
+
if.app-id = "com.apple.AppStore"
|
|
257
|
+
run = ['layout floating']
|
|
258
|
+
|
|
259
|
+
# [[on-window-detected]]
|
|
260
|
+
# if.app-id = "com.apple.iCal"
|
|
261
|
+
# run = ['layout floating']
|
|
262
|
+
|
|
263
|
+
# [[on-window-detected]]
|
|
264
|
+
# if.app-id = "com.apple.reminders"
|
|
265
|
+
# run = ['layout floating']
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[env]
|
|
2
|
+
TERM = "xterm-256color"
|
|
3
|
+
|
|
4
|
+
[window]
|
|
5
|
+
startup_mode = "Maximized"
|
|
6
|
+
# startup_mode = "SimpleFullscreen"
|
|
7
|
+
# position = { x = 800, y = 400 }
|
|
8
|
+
dimensions = { columns = 110, lines = 30 }
|
|
9
|
+
padding.x = 10
|
|
10
|
+
padding.y = 10
|
|
11
|
+
decorations = "Buttonless"
|
|
12
|
+
opacity = 0.8
|
|
13
|
+
blur = true
|
|
14
|
+
option_as_alt = "Both"
|
|
15
|
+
|
|
16
|
+
[font]
|
|
17
|
+
normal.family = "CaskaydiaCove Nerd Font Propo"
|
|
18
|
+
size = 19
|
|
19
|
+
|
|
20
|
+
[scrolling]
|
|
21
|
+
history = 100000
|
|
22
|
+
multiplier = 3
|
|
23
|
+
|
|
24
|
+
[cursor]
|
|
25
|
+
style = { shape = "Beam", blinking = "On" }
|
|
26
|
+
|
|
27
|
+
[selection]
|
|
28
|
+
save_to_clipboard = true
|
|
29
|
+
|
|
30
|
+
[mouse]
|
|
31
|
+
hide_when_typing = true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
changeps1: false
|
|
File without changes
|