Collection of all my configuration files
The symlinks
script manages all the dotfiles contained in this repo by means of the stow command.
It will create / remove a symlink for each specified package, a collection of files and directories that you wish to administer as a unit and that needs to be installed in a particular directory structure (starting from a target folder).
One or more packages will appear to be installed in a target directory, the root tree in which the symlinks will be created.
It is possible to ignore some files or directories passing it as a parameter through the --ignore
option.
Also, inside a package directory it can be defined a .target
file, containing a path to a target file that differs from the current folder structure.
Usage:
./symlinks [--install | -i] [--uninstall | -u] [--recursive | -r] [--target | -t] <TARGET_VALUE> FOLDER
Explanation:
- [--install | -i]: will create symlinks to TARGET folder
- [--uninstall | -u]: will remove previously created symlinks from TARGET folder (if any)
- [--target | -t] TARGET_VALUE: the target folder (default: $HOME)
- [--recursive | -r]: will iterate through dirs inside FOLDER (the stow package) and stow all the content
- [--help | -h]: show the helper menu
- FOLDER: the source folder to use to create/delete the symlink
- rm -rf ~/.environment/.neovim
- rm -rf ~/.config/nvim
- rm -rf ~/.local/share/nvim
nerd-fonts
: install patched fonts from nerd-fonts
on macos:
brew tap homebrew/cask-fonts
brew install --cask font-hack-nerd-font
Warning
make sure the patched font is used by the terminal
mason
needs:wget
curl https://sh.rustup.rs -sSf | sh
installscargo
andrust
vim-cmp
: Follow configuration here: docTelescope
: as a dependencies installripgrep
Harpoon
: doc
- c compiler:
sudo apt-get install build-essential
- bashls depends on
brew install shellcheck
for linting - bash
- install npm before
sudo apt-get install nodejs
npm i -g bash-language-server
- install npm before
- python
- Java
https://github.com/mfussenegger/nvim-jdtls
https://github.com/eclipse/eclipse.jdt.ls#installation
https://github.com/mfussenegger/nvim-dap
https://github.com/microsoft/vscode-java-test
apt-get install -y maven
apt-get install -y openjdk-8-jdk
- Python
- flake8 for diagnostic
pip install flake8
- autopep8 for formatting
pip install autopep8
- install
pip3 install pynvim
that implements support for python plugins in Nvim
- flake8 for diagnostic
- HURL
- test curl request easily: https://hurl.dev
- gopls
- installation through
go install golang.org/x/tools/gopls@latest
- HTML/CSS
- Emmet toolkit for html, css and javascript development
https://github.com/mattn/emmet-vim
https://raw.githubusercontent.com/mattn/emmet-vim/master/TUTORIAL
- terraform:
brew install hashicorp/tap/terraform-ls
- doc
- packer:
brew tap hashicorp/tap && brew install hashicorp/tap/packer
- htmx:
cargo install htmx-lsp
- documentation here - tailwindcss:
npm install -g @tailwindcss/language-server
- documentation here and here - angular: lsp can be installed via npm
npm install -g @angular/language-server
, angular cli can be installed runningnpm install -g @angular/cli
- documentation here
Contains all the macOs packages installed via homebrew. Documentation here.
- To install all dependencies run
brew bundle install --verbose --file Brewfile
command. - To get all the installed packages run
brew bundle dump --file=Brewfile
command. - To uninstall all formulae not listed in the Brewfile run
brew bundle cleanup --force
command. - To check if there is anything to install or upgrade in the Brewfile run
brew bundle check
command. - To output the list of all entries in the Brewfile run
brew bundle list --all
command.
Documentation here