adyshev / dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotfiles

Install stow

brew install stow

Install stow packages

make # or make <package> to install individual package

ZSH features

brew install zsh-autosuggestions
brew install zsh-syntax-highlighting

Install oh-my-posh

brew install jandedobbeleer/oh-my-posh/oh-my-posh

Generate tmux.reset.conf script

#!/bin/bash
tmux -f /dev/null -L temp start-server \; list-keys |
    sed -r \
        -e "s/bind-key(\s+)([\"#~\$])(\s+)/bind-key\1\'\2\'\3/g" \
        -e "s/bind-key(\s+)([\'])(\s+)/bind-key\1\"\2\"\3/g" \
        -e "s/bind-key(\s+)([;])(\s+)/bind-key\1\\\\\2\3/g" \
        -e "s/command-prompt -I #([SW])/command-prompt -I \"#\1\"/g" \
        >./.tmux.reset.conf

About


Languages

Language:Lua 62.8%Language:Shell 36.6%Language:Makefile 0.6%