IvanWoo / dotfiles

my dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

common tasks

./brew/main.sh
./fish/main.fish
./pipx/main.sh
./bin/dotfiles.sh
./houdini/main.sh

fish shell

add the shell to /etc/shells

echo /opt/homebrew/bin/fish | sudo tee -a /etc/shells

change the default shell

chsh -s /opt/homebrew/bin/fish

add brew binaries in fish path

fish_add_path /opt/homebrew/bin

neovim

install the packer.nvim plugin

git clone --depth 1 https://github.com/wbthomason/packer.nvim\
 ~/.local/share/nvim/site/pack/packer/start/packer.nvim
nvim config/nvim/lua/yifan/packer.lua

sync all packages

# source current file
:so %
# sync packer to install all dependencies
:PackerSync

vscode

To disable the Apple press and hold for VSCode only, run this command in a terminal:

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false

Then restart VSCode.

To re-enable, run this command in a terminal:

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool true

references

About

my dotfiles


Languages

Language:Lua 37.7%Language:Ruby 35.2%Language:Shell 27.1%