cbe / dotfiles

My dotfiles πŸ‹

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotfiles πŸ“œ

ℹ️ This repository is expected to be cloned to $HOME/dotfiles

Required packages

Linux

pacman -S \
  eza \              # eza is an ls replacement
  fish \             # fish-shell
  kitty \            # Terminal
  neovim \
  skim \             # Fuzzy finder
  starship \         # Command line prompt
  ttc-iosevka \      # Main monospaced font
  xsel \             # For copy/pasta 🍝 convenience, see `zsh/aliases`
  yay \
  zoxide
yay -S \
  vscodium-bin

MacOS

# Configure GitHub API token for brew to run smoothly
cp .github-api-token.example .github.api-token
# Insert API token in this file

# Install brew: https://brew.sh/#install

# Install dependencies
brew bundle

Bootstrap script

This will help preparing symlinks for various tools as well as some basic configurations, nothing too fancy here.

./bootstrap.sh

Other configurations

Visual Studio Code

These 2 lines help managing installed extensions

# Install extensions from a simple text file
cat ~/dotfiles/vscodium/extensions.txt | xargs -L 1 code --install-extension

# This previous list can be generated and kept up to date by running
code --list-extensions > ~/dotfiles/vscodium/extensions.txt

See also: https://www.elliotdenolf.com/posts/backup-restore-vs-code-extensions

corepack enable

Optional/deprecated symlinks

Sublime Text 3

Linux

ln -s ~/dotfiles/sublime/packages/user/ ~/.config/sublime-text-3/Packages/User

MacOS

ln -s ~/dotfiles/sublime/packages/user/ ~/Library/Application Support/Sublime Text 3/Packages/User/

macOS

Command Line Tools

sudo xcode-select --install
sudo xcodebuild -license accept

Adjust ~/.ssh/config

ServerAliveInterval 240
IdentitiesOnly yes
UseKeychain yes

About

My dotfiles πŸ‹


Languages

Language:Shell 64.6%Language:Emacs Lisp 30.1%Language:Python 2.5%Language:Ruby 1.2%Language:Vim Script 0.8%Language:YASnippet 0.8%