├── .gitignore
├── .gitmodules
├── README.md
├── awesomewm
└── .config
│ └── awesome
│ └── rc.lua
├── bin
└── .local
│ └── scripts
│ ├── artist-12
│ ├── flamegraph.pl
│ ├── jedi-language-server
│ ├── nodeenv
│ ├── nrdp
│ ├── proj.json
│ ├── projector
│ ├── pudb3
│ ├── screenkey
│ ├── stackcollapse-perf.pl
│ ├── tmux-cht.sh
│ ├── tmux-nrdp
│ ├── tmux-sessionizer
│ ├── tmux-tvui
│ ├── tmux-windowizer
│ ├── typer
│ └── xrandr-oh-shit
├── clean-env
├── i3
└── .config
│ ├── i3
│ └── config
│ └── i3status
│ └── config
├── install
├── layout.bak
├── layout.txt
├── project.json
├── test2
└── .config
│ └── personal
│ └── test
├── tmux
├── .tmux-cht-command
├── .tmux-cht-languages
└── .tmux.conf
├── tree-sitter
└── .config
│ └── tree-sitter
│ └── config.json
├── ubuntu
├── uwuntu
└── .config
│ ├── .nvidia-settings-rc
│ └── personal
│ ├── alias
│ ├── env
│ └── paths
├── vim-2022
└── .config
│ └── nvim
│ ├── after
│ └── plugin
│ │ └── foo.lua
│ ├── init.lua
│ └── lua
│ └── theprimeagen
│ ├── init.lua
│ ├── remap.lua
│ ├── set.lua
│ └── test.js
├── xkb
└── .config
│ └── xkb
│ └── symbols
│ └── real-prog-dvorak
└── zsh
├── .zsh_profile
└── .zshrc
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/.gitignore
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/.gitmodules
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/README.md
--------------------------------------------------------------------------------
/awesomewm/.config/awesome/rc.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/awesomewm/.config/awesome/rc.lua
--------------------------------------------------------------------------------
/bin/.local/scripts/artist-12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/artist-12
--------------------------------------------------------------------------------
/bin/.local/scripts/flamegraph.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/flamegraph.pl
--------------------------------------------------------------------------------
/bin/.local/scripts/jedi-language-server:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/jedi-language-server
--------------------------------------------------------------------------------
/bin/.local/scripts/nodeenv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/nodeenv
--------------------------------------------------------------------------------
/bin/.local/scripts/nrdp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/nrdp
--------------------------------------------------------------------------------
/bin/.local/scripts/proj.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/proj.json
--------------------------------------------------------------------------------
/bin/.local/scripts/projector:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/projector
--------------------------------------------------------------------------------
/bin/.local/scripts/pudb3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/pudb3
--------------------------------------------------------------------------------
/bin/.local/scripts/screenkey:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/screenkey
--------------------------------------------------------------------------------
/bin/.local/scripts/stackcollapse-perf.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/stackcollapse-perf.pl
--------------------------------------------------------------------------------
/bin/.local/scripts/tmux-cht.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/tmux-cht.sh
--------------------------------------------------------------------------------
/bin/.local/scripts/tmux-nrdp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/tmux-nrdp
--------------------------------------------------------------------------------
/bin/.local/scripts/tmux-sessionizer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/tmux-sessionizer
--------------------------------------------------------------------------------
/bin/.local/scripts/tmux-tvui:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/tmux-tvui
--------------------------------------------------------------------------------
/bin/.local/scripts/tmux-windowizer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/bin/.local/scripts/tmux-windowizer
--------------------------------------------------------------------------------
/bin/.local/scripts/typer:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | xdotool type --delay 75 "cat /dev/ttyACM3"
3 |
4 |
--------------------------------------------------------------------------------
/bin/.local/scripts/xrandr-oh-shit:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/clean-env:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/clean-env
--------------------------------------------------------------------------------
/i3/.config/i3/config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/i3/.config/i3/config
--------------------------------------------------------------------------------
/i3/.config/i3status/config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/i3/.config/i3status/config
--------------------------------------------------------------------------------
/install:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/install
--------------------------------------------------------------------------------
/layout.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/layout.bak
--------------------------------------------------------------------------------
/layout.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/layout.txt
--------------------------------------------------------------------------------
/project.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/project.json
--------------------------------------------------------------------------------
/test2/.config/personal/test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tmux/.tmux-cht-command:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/tmux/.tmux-cht-command
--------------------------------------------------------------------------------
/tmux/.tmux-cht-languages:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/tmux/.tmux-cht-languages
--------------------------------------------------------------------------------
/tmux/.tmux.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/tmux/.tmux.conf
--------------------------------------------------------------------------------
/tree-sitter/.config/tree-sitter/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/tree-sitter/.config/tree-sitter/config.json
--------------------------------------------------------------------------------
/ubuntu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/ubuntu
--------------------------------------------------------------------------------
/uwuntu/.config/.nvidia-settings-rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/uwuntu/.config/.nvidia-settings-rc
--------------------------------------------------------------------------------
/uwuntu/.config/personal/alias:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/uwuntu/.config/personal/alias
--------------------------------------------------------------------------------
/uwuntu/.config/personal/env:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/uwuntu/.config/personal/env
--------------------------------------------------------------------------------
/uwuntu/.config/personal/paths:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/uwuntu/.config/personal/paths
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/after/plugin/foo.lua:
--------------------------------------------------------------------------------
1 | print("foo from after")
2 |
3 |
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/init.lua:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/lua/theprimeagen/init.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/vim-2022/.config/nvim/lua/theprimeagen/init.lua
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/lua/theprimeagen/remap.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/vim-2022/.config/nvim/lua/theprimeagen/remap.lua
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/lua/theprimeagen/set.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/vim-2022/.config/nvim/lua/theprimeagen/set.lua
--------------------------------------------------------------------------------
/vim-2022/.config/nvim/lua/theprimeagen/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/vim-2022/.config/nvim/lua/theprimeagen/test.js
--------------------------------------------------------------------------------
/xkb/.config/xkb/symbols/real-prog-dvorak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/xkb/.config/xkb/symbols/real-prog-dvorak
--------------------------------------------------------------------------------
/zsh/.zsh_profile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/zsh/.zsh_profile
--------------------------------------------------------------------------------
/zsh/.zshrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ThePrimeagen/.dotfiles/HEAD/zsh/.zshrc
--------------------------------------------------------------------------------