aboutsummaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2026-07-03 18:37:53 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2026-07-03 18:37:53 +0200
commit31b2d83b8703971452a5200abf02a1353bef2a81 (patch)
treebec103a73d283eddd47824e9a3911ff4f2a05ee2 /.profile
parent38a2ee83e398bfe63328b5ac38fca69f032cde0d (diff)
work updateHEADmaster
Diffstat (limited to '.profile')
-rw-r--r--.profile11
1 files changed, 8 insertions, 3 deletions
diff --git a/.profile b/.profile
index 4eaa88d..9492394 100644
--- a/.profile
+++ b/.profile
@@ -66,11 +66,9 @@ export GOPATH="$HOME/.local/go"
export PASSWORD_STORE_ENABLE_EXTENSIONS=true
export PASSWORD_STORE_EXTENSIONS_DIR="$XDG_DATA_HOME/pass-extensions"
export MOZ_USE_XINPUT2=1
-export CMAKE_BUILD_TYPE=Debug
-export CMAKE_EXPORT_COMPILE_COMMANDS=1
-export CMAKE_GENERATOR=Ninja
export LIBVIRT_DEFAULT_URI='qemu:///system'
export WINEDEBUG='fixme-all,err-all'
+export INPUTRC="$XDG_CONFIG_HOME/inputrc"
# LS_COLORS
[ ! -e "$XDG_CACHE_HOME/dircolors" ] || [ "$XDG_CONFIG_HOME/dircolors" -nt "$XDG_CACHE_HOME/dircolors" ] && dircolors "$XDG_CONFIG_HOME/dircolors" > "$XDG_CACHE_HOME/dircolors"
@@ -100,6 +98,13 @@ export TEXMFVAR="$XDG_CACHE_HOME/texlive/texmf-var"
export TEXMFCONFIG="$XDG_CONFIG_HOME/texlive/texmf-config"
alias poke="poke --quiet"
+# CMake
+export CMAKE_BUILD_TYPE=Debug
+export CMAKE_EXPORT_COMPILE_COMMANDS=1
+export CMAKE_GENERATOR=Ninja
+export CMAKE_C_COMPILER_LAUNCHER=ccache
+export CMAKE_CXX_COMPILER_LAUNCHER=ccache
+
# colors
alias diff='diff --color=auto'
alias mk='FROM_PROMPT=y mk'