Video with step-by-step instructions for storing dotfiles as symlinks.
You will need git
and GNU stow
.
Clone into your $HOME
directory or ~
git clone git@github.com:CLTsolutions/.dotfiles.git
cd .dotfiles
Run stow
to symlink everything or just select what you want
Everything
stow */ # Everything (the '/' ignores the README)
Selected Configs
stow zsh # Just my zsh config
For solargraph to work in projects that include a .rubocop.yml
file in their
root directory, the following code block must be included
in your solargraph.lua
file.
See this issue
require('lspconfig').solargraph.setup {
cmd = { "solargraph", "stdio" }
}