Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pineapplegiant/dotfiles

🖥 ⚫️ 🗂 my dotfiles
https://github.com/pineapplegiant/dotfiles

dotfiles neofetch neovim tmux vim vscode

Last synced: about 2 months ago
JSON representation

🖥 ⚫️ 🗂 my dotfiles

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 setup

4 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-highlighting

cask "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 Karabiner

Run this to make VSCODE Vim repeat better
`defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false`