[feat] Add keybinds for nvim-dap-ui

And add an install script
This commit is contained in:
Uttarayan Mondal
2023-01-02 20:48:14 +05:30
parent 1f4a22f77a
commit 5c38a8cbcb
4 changed files with 24 additions and 7 deletions

10
install.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# ensure_installed:
DOTFILES_REPO="https://github.com/uttarayan21/dotfiles"
INSTALLED="$HOME/.local/share/dotfiles"
git clone "$DOTFILES_REPO" "$INSTALLED"
for file in "$INSTALLED"; do
ln -s "$file" $HOME/config/$(basename $file)
done