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

https://github.com/jessefarebro/dotfiles

alacritty + tmux + fish + neovim
https://github.com/jessefarebro/dotfiles

alacritty dotfiles fish-shell neovim tmux vim

Last synced: 3 months ago
JSON representation

alacritty + tmux + fish + neovim

Awesome Lists containing this project

README

          

# dotfiles



# Installation

```sh
git clone --bare https://github.com/jessefarebro/dotfiles $HOME/.dotfiles
alias dotfiles="git --git-dir=$HOME/.dotfiles --work-tree=$HOME"

dotfiles checkout
dotfiles config status.showUntrackedFiles no

. ~/.config/fish/config.fish
```

## MacOS Settings

```
# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true

# Expand print panel by default
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true

# Fast key repeat
defaults write NSGlobalDomain KeyRepeat -int 2

# Shorter delay until key repeat
defaults write NSGlobalDomain InitialKeyRepeat -int 15

```