Fix neovim config for snippets and added user snippets

This commit is contained in:
2023-09-25 10:28:32 +05:30
parent ac66a60f4a
commit aca8316422
142 changed files with 34 additions and 2 deletions
+7 -1
View File
@@ -1,4 +1,10 @@
#!/usr/bin/env bash
THIS_DIR=$(dirname $(readlink -f $0))
env PKG=lunarvim alacritty -e "$THIS_DIR/nvim-distro.sh" "$@" &
export NVIM_APPNAME="lvim"
export LUNARVIM_RUNTIME_DIR="$THIS_DIR/lunarvim/share/lvim"
export LUNARVIM_CONFIG_DIR="$THIS_DIR/lunarvim/nvim"
export LUNARVIM_CACHE_DIR="$THIS_DIR/lunarvim/cache"
export LUNARVIM_BASE_DIR="$THIS_DIR/lunarvim/LunarVim"
exec -a "$NVIM_APPNAME" alacritty -e nvim -u "$LUNARVIM_BASE_DIR/init.lua" "$@" &