├── .config └── gitmojis.csv ├── .curlrc ├── .editorconfig ├── .github └── workflows │ └── dotfiles.yml ├── .gitignore ├── .npmrc ├── .pdbrc ├── .psqlrc ├── .ripgreprc ├── .sqliterc ├── .tmux.conf ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── git ├── .git-functions ├── .gitattributes ├── .gitconfig ├── .gitignore └── .gitmessage ├── install ├── gopackages ├── npmfile ├── ohmyzshfile └── ubuntu-packages.sh ├── linux ├── .linux-aliases ├── .linux-exports └── .linux-functions ├── macos ├── .macos-aliases ├── .macos-exports ├── Brewfile ├── Caskfile ├── defaults.sh ├── dock.sh └── iterm2 │ └── iterm2.json ├── nvim ├── init.lua ├── lazy-lock.json ├── lazyvim.json └── lua │ ├── config │ ├── autocmds.lua │ ├── colorscheme.lua │ ├── keymaps.lua │ ├── lazy.lua │ └── options.lua │ ├── plugins │ ├── coding.lua │ ├── editor.lua │ ├── extras │ │ └── lang │ │ │ └── python.lua │ ├── lsp.lua │ ├── treesitter.lua │ └── ui.lua │ └── util │ ├── debug.lua │ └── utils.lua ├── python ├── .pythonrc.py └── pip.conf ├── scripts ├── README.md ├── backup.sh ├── detect_os.sh ├── fzf_gh_projects.sh ├── fzf_repomix.sh ├── git │ └── git-search ├── install-opencv.sh ├── python │ └── get_class_methods.py ├── refactoring.sh ├── rename.sh ├── wait-for.sh └── xfi ├── starship ├── .starship.toml └── starship.zsh ├── vscode ├── README.md ├── debugging │ ├── django-launch.json │ ├── electron-launch.json │ ├── nest-launch.json │ ├── next-launch.json │ └── node-launch.json ├── extensions.md ├── keybindings.json ├── settings.json └── snippets │ └── python.json ├── windows ├── winget-install.ps1 └── wsl │ ├── .wslconfig │ └── settings.json └── zsh ├── .aliases ├── .dockerfunc ├── .envfunc ├── .exports ├── .file ├── .functions ├── .inputrc ├── .kube ├── .node ├── .python ├── .std ├── .zprofile ├── .zshenv └── .zshrc /.config/gitmojis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.config/gitmojis.csv -------------------------------------------------------------------------------- /.curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.curlrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dotfiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.github/workflows/dotfiles.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.npmrc -------------------------------------------------------------------------------- /.pdbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.pdbrc -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.psqlrc -------------------------------------------------------------------------------- /.ripgreprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.ripgreprc -------------------------------------------------------------------------------- /.sqliterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.sqliterc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /git/.git-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/git/.git-functions -------------------------------------------------------------------------------- /git/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/git/.gitattributes -------------------------------------------------------------------------------- /git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/git/.gitconfig -------------------------------------------------------------------------------- /git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/git/.gitignore -------------------------------------------------------------------------------- /git/.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/git/.gitmessage -------------------------------------------------------------------------------- /install/gopackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/install/gopackages -------------------------------------------------------------------------------- /install/npmfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/install/npmfile -------------------------------------------------------------------------------- /install/ohmyzshfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/install/ohmyzshfile -------------------------------------------------------------------------------- /install/ubuntu-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/install/ubuntu-packages.sh -------------------------------------------------------------------------------- /linux/.linux-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/linux/.linux-aliases -------------------------------------------------------------------------------- /linux/.linux-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/linux/.linux-exports -------------------------------------------------------------------------------- /linux/.linux-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/linux/.linux-functions -------------------------------------------------------------------------------- /macos/.macos-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/.macos-aliases -------------------------------------------------------------------------------- /macos/.macos-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/.macos-exports -------------------------------------------------------------------------------- /macos/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/Brewfile -------------------------------------------------------------------------------- /macos/Caskfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/Caskfile -------------------------------------------------------------------------------- /macos/defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/defaults.sh -------------------------------------------------------------------------------- /macos/dock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/dock.sh -------------------------------------------------------------------------------- /macos/iterm2/iterm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/macos/iterm2/iterm2.json -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lazyvim.json -------------------------------------------------------------------------------- /nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /nvim/lua/config/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/config/colorscheme.lua -------------------------------------------------------------------------------- /nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/coding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/coding.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/editor.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/extras/lang/python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/extras/lang/python.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/plugins/ui.lua -------------------------------------------------------------------------------- /nvim/lua/util/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/util/debug.lua -------------------------------------------------------------------------------- /nvim/lua/util/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/nvim/lua/util/utils.lua -------------------------------------------------------------------------------- /python/.pythonrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/python/.pythonrc.py -------------------------------------------------------------------------------- /python/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/python/pip.conf -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/backup.sh -------------------------------------------------------------------------------- /scripts/detect_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/detect_os.sh -------------------------------------------------------------------------------- /scripts/fzf_gh_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/fzf_gh_projects.sh -------------------------------------------------------------------------------- /scripts/fzf_repomix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/fzf_repomix.sh -------------------------------------------------------------------------------- /scripts/git/git-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/git/git-search -------------------------------------------------------------------------------- /scripts/install-opencv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/install-opencv.sh -------------------------------------------------------------------------------- /scripts/python/get_class_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/python/get_class_methods.py -------------------------------------------------------------------------------- /scripts/refactoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/refactoring.sh -------------------------------------------------------------------------------- /scripts/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/rename.sh -------------------------------------------------------------------------------- /scripts/wait-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/wait-for.sh -------------------------------------------------------------------------------- /scripts/xfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/scripts/xfi -------------------------------------------------------------------------------- /starship/.starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/starship/.starship.toml -------------------------------------------------------------------------------- /starship/starship.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/starship/starship.zsh -------------------------------------------------------------------------------- /vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/README.md -------------------------------------------------------------------------------- /vscode/debugging/django-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/debugging/django-launch.json -------------------------------------------------------------------------------- /vscode/debugging/electron-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/debugging/electron-launch.json -------------------------------------------------------------------------------- /vscode/debugging/nest-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/debugging/nest-launch.json -------------------------------------------------------------------------------- /vscode/debugging/next-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/debugging/next-launch.json -------------------------------------------------------------------------------- /vscode/debugging/node-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/debugging/node-launch.json -------------------------------------------------------------------------------- /vscode/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/extensions.md -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/settings.json -------------------------------------------------------------------------------- /vscode/snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/vscode/snippets/python.json -------------------------------------------------------------------------------- /windows/winget-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/windows/winget-install.ps1 -------------------------------------------------------------------------------- /windows/wsl/.wslconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/windows/wsl/.wslconfig -------------------------------------------------------------------------------- /windows/wsl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/windows/wsl/settings.json -------------------------------------------------------------------------------- /zsh/.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.aliases -------------------------------------------------------------------------------- /zsh/.dockerfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.dockerfunc -------------------------------------------------------------------------------- /zsh/.envfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.envfunc -------------------------------------------------------------------------------- /zsh/.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.exports -------------------------------------------------------------------------------- /zsh/.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.file -------------------------------------------------------------------------------- /zsh/.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.functions -------------------------------------------------------------------------------- /zsh/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.inputrc -------------------------------------------------------------------------------- /zsh/.kube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.kube -------------------------------------------------------------------------------- /zsh/.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.node -------------------------------------------------------------------------------- /zsh/.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.python -------------------------------------------------------------------------------- /zsh/.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.std -------------------------------------------------------------------------------- /zsh/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.zprofile -------------------------------------------------------------------------------- /zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.zshenv -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victory-sokolov/dotfiles/HEAD/zsh/.zshrc --------------------------------------------------------------------------------