Files
dotfiles/git/.gitignore_global
T
Dmitry 7a895403cd feat(zsh): modularize Zsh configuration with environment variables, aliases, functions, and plugins
- Create a new Zsh configuration structure under ~/.config/zsh
- Add main .zshrc file to load configurations and plugins
- Implement environment variables in env.zsh
- Define aliases for common commands in aliases.zsh
- Set up completion settings in completion.zsh
- Add custom functions for navigation, file handling, and process management in functions.zsh
- Configure keybindings in keybindings.zsh
- Set shell options in options.zsh
- Load plugins using Zinit in plugins.zsh
- Configure prompt settings in prompt.zsh
- Create a .zshenv file to set ZDOTDIR for Zsh configuration directory
2026-02-17 10:53:02 +03:00

191 lines
3.1 KiB
Plaintext

# ════════════════════════════════════════════════════════════
# Global Git Ignore
# Файлы, которые будут игнорироваться во всех репозиториях
# ════════════════════════════════════════════════════════════
# ═══ OS Generated ═══════════════════════════════════════════
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Linux
*~
.directory
.Trash-*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# ═══ IDEs & Editors ═════════════════════════════════════════
# VS Code
.vscode/
*.code-workspace
.history/
# JetBrains IDEs
.idea/
*.iml
*.ipr
*.iws
.idea_modules/
# Vim
*.swp
*.swo
*~
.*.sw?
Session.vim
# Emacs
*~
\#*\#
.\#*
.projectile
# Sublime Text
*.sublime-project
*.sublime-workspace
# ═══ Languages ══════════════════════════════════════════════
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv/
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
dist/
build/
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.eslintcache
.node_repl_history
# Rust
target/
Cargo.lock
**/*.rs.bk
# Go
*.exe
*.test
*.prof
vendor/
# Ruby
*.gem
*.rbc
.bundle/
.ruby-version
.ruby-gemset
# Java
*.class
*.jar
*.war
*.ear
.gradle/
build/
# ═══ Logs & Databases ═══════════════════════════════════════
# Logs
*.log
logs/
*.pid
*.seed
# Databases
*.sql
*.sqlite
*.sqlite3
*.db
# ═══ Environment & Secrets ══════════════════════════════════
.env
.env.local
.env.*.local
*.pem
*.key
*.cert
.envrc
.tool-versions
# ═══ Build & Dependencies ═══════════════════════════════════
# Compiled files
*.o
*.a
*.out
*.ko
*.obj
*.elf
*.dll
*.dylib
# Packages
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# ═══ Temporary Files ════════════════════════════════════════
# Temporary
tmp/
temp/
*.tmp
*.bak
*.backup
*.cache
# ═══ Project Specific ═══════════════════════════════════════
# Coverage reports
coverage/
.nyc_output/
# Documentation builds
docs/_build/
site/
# Testing
.tox/
# ═══ Other ══════════════════════════════════════════════════
# CTags
tags
TAGS
# Local configuration
.local/
local.properties