Skip to content

Instantly share code, notes, and snippets.

View ZacharyThompson's full-sized avatar

Zachary Thompson ZacharyThompson

  • Santa Maria, CA, USA
View GitHub Profile
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_STATE_HOME="$HOME/.local/state"
export GRADLE_USER_HOME="$XDG_DATA_HOME/gradle"
export NODE_REPL_HISTORY="$XDG_DATA_HOME/node_repl_history"
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
export NVM_DIR="$XDG_DATA_HOME/nvm"
export TLDR_CACHE_DIR="$XDG_CACHE_HOME/tldrc"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_STATE_HOME="$HOME/.local/state"
export PATH="$PATH:$HOME/.local/bin"
export BROWSER='firefox'
export EDITOR='nvim'
export PAGER='less'
export READER='zathura'
ao=pipewire
hwdec=auto
profile=gpu-hq
scale=ewa_lanczossharp
cscale=ewa_lanczossharp
video-sync=display-resample
interpolation
tscale=oversample
no-keepaspect-window
@ZacharyThompson
ZacharyThompson / spectrwm.conf
Created April 27, 2022 23:52
spectrwm config file
# PLEASE READ THE MAN PAGE BEFORE EDITING THIS FILE!
# https://htmlpreview.github.io/?https://github.com/conformal/spectrwm/blob/master/spectrwm.html
# NOTE: all rgb color values in this file are in hex! see XQueryColor for examples
workspace_limit = 9
focus_mode = default
focus_close = first
focus_close_wrap = 0
focus_default = first
spawn_position = first
@ZacharyThompson
ZacharyThompson / init.lua
Last active July 9, 2023 21:17
My neovim config
-- Nvim Configuration
vim.o.title = true
vim.o.ls = 2
vim.o.mouse = "a"
vim.o.nu = true
vim.o.rnu = true
vim.o.so = 8
vim.o.sw = 0
vim.o.scl = "number"
vim.o.si = true