add lucem configuration and add nimble's binary path to $PATH
Signed-off-by: cswimr <seaswimmerthefsh@gmail.com>
This commit is contained in:
parent
bd8cbd94ca
commit
45c76fdef2
3 changed files with 30 additions and 1 deletions
23
.config/lucem/config.toml
Normal file
23
.config/lucem/config.toml
Normal file
|
@ -0,0 +1,23 @@
|
|||
[apk]
|
||||
version = ""
|
||||
|
||||
[lucem]
|
||||
discord_rpc = true
|
||||
notify_server_region = true
|
||||
loading_screen = true
|
||||
polling_delay = 0
|
||||
|
||||
[tweaks]
|
||||
oldOof = true
|
||||
moon = ""
|
||||
sun = ""
|
||||
font = ""
|
||||
|
||||
[client]
|
||||
fps = 9999
|
||||
launcher = ""
|
||||
backend = "x11"
|
||||
telemetry = false
|
||||
fflags = "\n\nFIntDebugForceMSAASamples=4"
|
||||
apkUpdates = true
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -21,6 +21,9 @@
|
|||
.config/btop/**
|
||||
!.config/btop/btop.conf
|
||||
|
||||
!.config/lucem/
|
||||
!.config/lucem/**
|
||||
|
||||
# ############################### .zshc
|
||||
!.zshc/
|
||||
!.zshc/**
|
||||
|
|
5
.zshrc
5
.zshrc
|
@ -1,5 +1,8 @@
|
|||
# Set Nimble's installation directory so it can be used in $PATH
|
||||
export NIMBLE_DIR=$HOME/.nimble
|
||||
|
||||
# If you come from bash you might have to change your $PATH.
|
||||
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$HOME/.cargo/bin:/usr/local/go/bin:$HOME/go/bin:$PATH
|
||||
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$HOME/.cargo/bin:/usr/local/go/bin:$HOME/go/bin:$NIMBLE_DIR/bin:$PATH
|
||||
|
||||
# Path to your Oh My Zsh installation.
|
||||
export ZSH="$HOME/.oh-my-zsh"
|
||||
|
|
Reference in a new issue