brew bundle installTo install the dotfiles, run the following command in the root of the repo:
./install.shTo add a new file, such as .aider.conf.yml, to be managed by stow, follow these steps:
-
Place the file in the appropriate directory within your dotfiles structure. For example, if you have a directory for configuration files, place
.aider.conf.ymlthere. -
Ensure the directory structure mirrors where the file should be located in your home directory. For example, if
.aider.conf.ymlshould be in the home directory, place it directly under the relevant directory in your dotfiles repo. -
Run the
stowcommand to create the symlink in your home directory:stow <directory_name>
Replace
<directory_name>with the name of the directory containing.aider.conf.yml.
pass is used to manage passwords. Example:
pass show api/tokens/openai`
## LSP debug
Add the following to your `init.lua` to enable LSP debug logs:
```lua
vim.lsp.set_log_level "debug"and then run LspLog command to see the logs.