Kheb's neovim configs
- Rofi Custom Bash Script for quick launch
- Neovim 0.11+ for native nvim lsp support
- Lazy plugin manager
- Keybinds for my own comfort
- nvim-lsp
- nvim-autotag
- nvim-autopairs
- mason
- plenary-nvim
- telescope
- live-preview
- harpoon
- undotree
- rose-pine theme
- barbar nvim
#!/bin/bash
project=$(
find "$HOME/projects" -mindepth 1 -maxdepth 1 -type d -printf '%f\n' |
rofi -dmenu -i -p "Kheb NVIM" \
-theme "$HOME/projects/dotfiles/rofi/project-picker.rasi"
)
if [[ -n "$project" ]]; then
kitty --working-directory "$HOME/projects/$project" \
bash -c "nvim .; exec zsh"
fi Template load remap with Ctrl + V
~/projects/dotfiles/nvim/after/snippets/