mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
390 B
10 lines
390 B
#!/usr/bin/env bash
|
|
THIS_DIR=$(dirname $(readlink -f $0))
|
|
|
|
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" "$@" &
|
|
|