Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pineapplegiant/dotfiles
🖥 ⚫️ 🗂 my dotfiles
https://github.com/pineapplegiant/dotfiles
dotfiles neofetch neovim tmux vim vscode
Last synced: about 1 month ago
JSON representation
🖥 ⚫️ 🗂 my dotfiles
- Host: GitHub
- URL: https://github.com/pineapplegiant/dotfiles
- Owner: pineapplegiant
- Created: 2018-09-10T05:06:52.000Z (about 6 years ago)
- Default Branch: supreme-overlord
- Last Pushed: 2024-04-17T23:32:27.000Z (7 months ago)
- Last Synced: 2024-08-07T18:38:58.557Z (3 months ago)
- Topics: dotfiles, neofetch, neovim, tmux, vim, vscode
- Language: Lua
- Homepage:
- Size: 2.47 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My dotfiles 🛸
> This is the safekeeping of my terminal environment! 👽
[sysinfo]: ./neofetch.png "A Neofetch screenshot of my mac system"
![Neofetch information][sysinfo]
- I started trying to use the [XDG_SPECIFICATION](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) for my code to attempt to clean up my home directory.
- Basically, if the program supports it, look for settings in my dotfiles directory which should be in `$HOME/dotfiles`, if not, then just put it in `$HOME/.config` or `$HOME/.local` etc:
- `XDG_CACHE_HOME="${XDG_CACHE_HOME:-${HOME}/.cache}"`
- `XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/.config}"`
- `XDG_DATA_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}"`## Directory Structure
```bash
.
├── .cache/
├── .config/
├── .local/
├── .profile -> ~/.profile (symlinked to $HOME)
├── .zprofile -> ~/.zprofile (symlinked to $HOME)
├── README.md
├── neofetch.png
└── install/ -> Brew packages & MacOSX setup4 directories, 4 files
```
## Programs I use:
- [Alacritty](https://github.com/alacritty/alacritty "Alacritty's Github") - Finally switched to this minimal bad boi 🖥
- [Neovim](https://neovim.io "NeoVim's Homepage") - The better vim 👀🔥
- [Tmux](https://github.com/tmux/tmux/wiki "Tmux's Homepage") - Terminal multiplexer - She thicc 🍑
- [ZShell](http://zsh.sourceforge.net/ "The Z shell's Homepage") - Better than bash experience 🤓
- [Spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt "Spaceship prompt Github") - Configurable, pretty, and works 🚀
- [Karabiner](https://karabiner-elements.pqrs.org/ "Karabiner Elements home page") - I like to remap the right command on MacOSX to Ctrl ⌨
- [Rectangle](https://rectangleapp.com/ "Rectangle Home Page") - A better window managing experience on Mac 👓
- [Vscode](https://code.visualstudio.com "VSCode's homepage") - Can't lie, I use this too... Pair programming my guy.## Colors:
- [My very own Spaceduck theme](https://github.com/pineapplegiant/spaceduck-theme "My Personal Color scheme :3") - We rep them colors 🦆👽
## Setup (Doesn't really work yet 😳)
1. Run mac-setup (macos) to install brew, git, and additional brew packages and settings:
```bash
curl "https://raw.githubusercontent.com/pineapplegiant/dotfiles/supreme-overlord/install/mac-os-setup" | bash
```##### Essential Brew Packages I really like :')
cmatrix
exa
fzf
genact
git
groff
htop
lazygit
ncurses
neofetch
neovim
node
pandoc
pandoc-citeproc
ripgrep
tldr
tmux
tree
spaceship-prompt
unzip
yarn
z
zsh
zsh-autosuggestions
zsh-completions
zsh-history-substring-search
zsh-syntax-highlightingcask "font-firamono-nerd-font-mono"
cask "font-sauce-code-pro-nerd-font"### Fonts
- [Nerd Fonts](https://github.com/ryanoasis/nerd-fonts)
- `brew cask install font-firamono-nerd-font-mono`### Apple Config
#### Prompt
[Spaceship prompt](https://github.com/denysdovhan/spaceship-prompt)
- `brew install -g spaceship-prompt`
#### System Settings:
**Run these to make key repeat faster:**
- `defaults write -g KeyRepeat -int 4`
- `defaults write -g InitialKeyRepeat -int 15`**Run this to show full paths:**
- `defaults write com.apple.finder _FXShowPosixPathInTitle -bool true; killall Finder`
- Finder -> View > Show Status bar
- Change Caps lock to ESC -> Taken care of in the KarabinerRun this to make VSCODE Vim repeat better
`defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false`