10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
||
|
cd "$DIR/.."
|
||
|
|
||
|
export LUA_PATH="./lua/?/init.lua;./lua/?.lua"
|
||
|
lua -e 'require"tokyonight.extra"'
|