docs: update links
chore: update gitignore patterns
This commit is contained in:
+125
@@ -3,3 +3,128 @@ user/
|
|||||||
dev.lua
|
dev.lua
|
||||||
user.lua
|
user.lua
|
||||||
plugins/tunicodes/
|
plugins/tunicodes/
|
||||||
|
|
||||||
|
# id: gitig-boilerplate-7f0528027e23f210196ae4583c408e5b
|
||||||
|
# ╭──────────────────────────────────────────────────────────╮
|
||||||
|
# │ GitIgnore Boilerplate Template │
|
||||||
|
# ╰──────────────────────────────────────────────────────────╯
|
||||||
|
#
|
||||||
|
# ──────────────────── OS-Generated Files ────────────────────
|
||||||
|
# automatic backup files created by some editors (e.g., Vim, Emacs)
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files created if a process still has a handle to a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# MacOS junk
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# files created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
# ─────────────────── Debug/Temporary/Testing ────────────────
|
||||||
|
# Matches OLD / .OLD
|
||||||
|
[Oo][Ll][Dd]/
|
||||||
|
.[Oo][Ll][Dd]/
|
||||||
|
|
||||||
|
# Matches DISABLE / .DISABLE
|
||||||
|
[Dd][Ii][Ss][Aa][Bb][Ll][Ee]/
|
||||||
|
.[Dd][Ii][Ss][Aa][Bb][Ll][Ee]/
|
||||||
|
|
||||||
|
# Matches DISABLED / .DISABLED
|
||||||
|
[Dd][Ii][Ss][Aa][Bb][Ll][Ee][Dd]/
|
||||||
|
.[Dd][Ii][Ss][Aa][Bb][Ll][Ee][Dd]/
|
||||||
|
|
||||||
|
# Matches DEBUG / .DEBUG
|
||||||
|
[Dd][Ee][Bb][Uu][Gg]/
|
||||||
|
.[Dd][Ee][Bb][Uu][Gg]/
|
||||||
|
|
||||||
|
# Matches TMP / .TMP
|
||||||
|
[Tt][Mm][Pp]/
|
||||||
|
.[Tt][Mm][Pp]/
|
||||||
|
|
||||||
|
# Matches TEMP / .TEMP
|
||||||
|
[Tt][Ee][Mm][Pp]/
|
||||||
|
.[Tt][Ee][Mm][Pp]/
|
||||||
|
|
||||||
|
# Matches TEMPORARY / .TEMPORARY
|
||||||
|
[Tt][Ee][Mm][Pp][Oo][Rr][Aa][Rr][Yy]/
|
||||||
|
.[Tt][Ee][Mm][Pp][Oo][Rr][Aa][Rr][Yy]/
|
||||||
|
|
||||||
|
# Matches TESTING / .TESTING
|
||||||
|
[Tt][Ee][Ss][Tt][Ii][Nn][Gg]/
|
||||||
|
.[Tt][Ee][Ss][Tt][Ii][Nn][Gg]/
|
||||||
|
|
||||||
|
# ─────────────────── AI Sessions and Rules ──────────────────
|
||||||
|
# Matches CLAUDE.md, .claud*, etc.
|
||||||
|
[Cc][Ll][Aa][Uu][Dd][Ee].[Mm][Dd]
|
||||||
|
.[Cc][Ll][Aa][Uu][Dd]*
|
||||||
|
|
||||||
|
# Matches GEMINI.md, .gemin*, etc.
|
||||||
|
[Gg][Ee][Mm][Ii][Nn][Ii].[Mm][Dd]
|
||||||
|
.[Gg][Ee][Mm][Ii][Nn]*
|
||||||
|
|
||||||
|
# Matches ANTIGRAVITY.md, .antigrav*, etc.
|
||||||
|
[Aa][nN][Tt][Ii][Gg][Rr][Aa][Vv][Ii][Tt][Yy].[Mm][Dd]
|
||||||
|
.[Aa][Nn][Tt][Ii][Gg][Rr][Aa][Vv]*
|
||||||
|
|
||||||
|
# Matches AGENTS.md, .remember, etc.
|
||||||
|
[Aa][Gg][Ee][Nn][Tt][Ss].[Mm][Dd]
|
||||||
|
.[Rr][Ee][Mm][Ee][Mm][Bb][Ee][Rr]
|
||||||
|
|
||||||
|
# ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
# id: gi-patterns-aa0d0d1d58f24039fa0491e40c78bb9f
|
||||||
|
# Created by https://www.toptal.com/developers/gitignore/api/lua
|
||||||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=lua
|
||||||
|
|
||||||
|
### Lua ###
|
||||||
|
# Compiled Lua sources
|
||||||
|
luac.out
|
||||||
|
|
||||||
|
# luarocks build files
|
||||||
|
*.src.rock
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
|
||||||
|
# Object files
|
||||||
|
*.o
|
||||||
|
*.os
|
||||||
|
*.ko
|
||||||
|
*.obj
|
||||||
|
*.elf
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
*.lib
|
||||||
|
*.a
|
||||||
|
*.la
|
||||||
|
*.lo
|
||||||
|
*.def
|
||||||
|
*.exp
|
||||||
|
|
||||||
|
# Shared objects (inc. Windows DLLs)
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.so.*
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
||||||
|
*.i*86
|
||||||
|
*.x86_64
|
||||||
|
*.hex
|
||||||
|
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/lua
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ The rootiest WezTerm configuration you will ever see!
|
|||||||
4. Clone the repository
|
4. Clone the repository
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/rootiest/rootiest-wezterm.git ~/.config/wezterm
|
git clone https://git.rootiest.dev/rootiest/wezterm-config.git ~/.config/wezterm
|
||||||
```
|
```
|
||||||
|
|
||||||
5. **Enjoy!** 🎉
|
5. **Enjoy!** 🎉
|
||||||
@@ -76,7 +76,7 @@ The rootiest WezTerm configuration you will ever see!
|
|||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
$home = $env:USERPROFILE
|
$home = $env:USERPROFILE
|
||||||
git clone https://github.com/rootiest/rootiest-wezterm.git $home/.config/wezterm
|
git clone https://git.rootiest.dev/rootiest/wezterm-config.git $home/.config/wezterm
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Enjoy! 🎉
|
5. Enjoy! 🎉
|
||||||
@@ -208,17 +208,17 @@ and loaded by the tabline plugin.
|
|||||||
|
|
||||||
## Companion Tools
|
## Companion Tools
|
||||||
|
|
||||||
[Rootiest Fish Conf](https://github.com/rootiest/rootiest-fish) -
|
[Rootiest Fish Conf](https://git.rootiest.dev/rootiest/fish-config) -
|
||||||
Fish shell configuration that pairs well with this WezTerm configuration
|
Fish shell configuration that pairs well with this WezTerm configuration
|
||||||
and the NeoVim configuration.
|
and the NeoVim configuration.
|
||||||
|
|
||||||
[Rootiest Tmux](https://github.com/rootiest/rootiest-tmux) -
|
[Rootiest Tmux](https://git.rootiest.dev/rootiest/tmux-config) -
|
||||||
A tmux configuration that is designed to work with this WezTerm config.
|
A tmux configuration that is designed to work with this WezTerm config.
|
||||||
|
|
||||||
[Rootiest Neovim](https://github.com/rootiest/rootiest-nvim) -
|
[Rootiest Neovim](https://git.rootiest.dev/rootiest/nvim-config) -
|
||||||
A NeoVim config built to work alongside this and the fish config.
|
A NeoVim config built to work alongside this and the fish config.
|
||||||
|
|
||||||
[Rootiest Iosevka Font](https://github.com/rootiest/rootiest-iosevka) -
|
[Rootiest Iosevka Font](https://git.rootiest.dev/rootiest/rootiest-iosevka) -
|
||||||
A custom Iosevka font that is designed by developers, for developers.
|
A custom Iosevka font that is designed by developers, for developers.
|
||||||
|
|
||||||
[Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/) -
|
[Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/) -
|
||||||
|
|||||||
Reference in New Issue
Block a user