this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xdg-ninja: move a bunch more config files

+33 -30
.cargo/config.toml .config/cargo/config.toml
+1 -1
.config/bpython/config
··· 13 13 14 14 # Store history in an xdg dir instead of ~ 15 15 # Environment variables don't seem to work 16 - hist_file = ~/.local/share/bpythonhistory 16 + hist_file = ~/.local/share/bpython/history 17 17 18 18 19 19 [keyboard]
+4
.config/emacs/early-init.el
··· 1 + ;; TODO: may want to move other "dir" customization into here as well, 2 + ;; but it seems like package-user-dir is the important one for now 3 + (custom-set-variables 4 + '(package-user-dir "~/.local/share/emacs/elpa"))
+13 -12
.config/fish/conf.d/05-xdg-dirs.fish
··· 7 7 set -gx ANDROID_HOME $XDG_DATA_HOME/android 8 8 set -gx CCACHE_DIR $XDG_CACHE_HOME/ccache 9 9 set -gx DOCKER_CONFIG $XDG_CONFIG_HOME/docker 10 - set -gx GDBHISTFILE $XDG_CONFIG_HOME/gdb/.gdb_history 11 - set -gx LESSHISTFILE $XDG_CACHE_HOME/less/history 10 + set -gx GDBHISTFILE $XDG_DATA_HOME/gdb/history 11 + set -gx LESSHISTFILE $XDG_DATA_HOME/less/history 12 12 set -gx NODE_REPL_HISTORY $XDG_DATA_HOME/node_repl_history 13 13 set -gx PYLINTHOME $XDG_CACHE_HOME/pylint 14 14 set -gx RBENV_ROOT $XDG_DATA_HOME/rbenv 15 15 16 + export CARGO_HOME="$XDG_CONFIG_HOME"/cargo 17 + export RUSTUP_HOME="$XDG_CONFIG_HOME"/rustup 18 + export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc 19 + 20 + export BUNDLE_USER_CACHE="$XDG_CACHE_HOME"/bundle 16 21 export BUNDLE_USER_CONFIG="$XDG_CONFIG_HOME"/bundle 17 - export BUNDLE_USER_CACHE="$XDG_CACHE_HOME"/bundle 18 22 export BUNDLE_USER_PLUGIN="$XDG_DATA_HOME"/bundle 19 23 export SQLITE_HISTORY="$XDG_CACHE_HOME"/sqlite_history 20 24 export WINEPREFIX="$XDG_DATA_HOME"/wine 21 25 22 - 23 26 # TODO: 24 - # - .cargo 25 - # - .gitconfig 26 27 # - GOPATH 27 - # - .lnav 28 - # - .npm maybe 28 + # - .npm 29 29 # - .pyenv 30 30 # - pylint.d 31 - # - .python_history 32 - # - rustup 33 31 # - tmux 34 32 # - vim 35 - # 33 + # - .gem 34 + # - gnupg 35 + # .nix-profile etc. 36 36 # - terminfo (maybe doesn't work on macos) 37 - # - .bash_history (needs to be per-shell) 37 + # - .bash_history 38 38 # - .zsh_history 39 + # - .python_history
+10
.config/gdb/gdbinit
··· 1 + add-auto-load-safe-path ~ 2 + # set startup-with-shell off 3 + 4 + # source ~/.config/gdb/init.py 5 + set index-cache on 6 + 7 + set substitute-path /home/fincs/git/pacman-packages/libctru/src/libctru-2.1.1 ~/Documents/Development/3ds/libctru/ 8 + 9 + set history save on 10 + set history filename ~/.local/share/gdb/history
+1
.config/git/ignore
··· 14 14 # Clangd, CMake etc 15 15 .clangd 16 16 compile_commands.json 17 + compile_flags.txt 17 18 18 19 # Custom dotfiles-type stuff 19 20 .python-version
-1
.config/yadm/.pre-commit-config.yaml
··· 1 - 2 1 repos: 3 2 - repo: meta 4 3 hooks:
.emacs.d/autosave/dummy .config/emacs/autosave/dummy
+4 -6
.emacs.d/init.el .config/emacs/init.el
··· 40 40 ;; Your init file should contain only one such instance. 41 41 ;; If there is more than one, they won't work right. 42 42 '(alert-fade-time 5) 43 - '(auto-save-file-name-transforms '((".*" "~/.emacs.d/autosave/" t))) 43 + '(auto-save-file-name-transforms '((".*" "~/.local/share/emacs/autosave/" t))) 44 44 '(backup-by-copying t) 45 - '(backup-directory-alist '(("." . "~/.emacs.d/backup"))) 45 + '(backup-directory-alist '(("." . "~/.local/share/emacs/backup"))) 46 46 '(before-save-hook '(delete-trailing-whitespace)) 47 47 '(browse-url-browser-function 'browse-url-default-browser) 48 48 '(delete-old-versions t) 49 - '(desktop-path '("~/.emacs.d/")) 49 + '(desktop-path '("~/.local/share/emacs/")) 50 50 '(display-line-numbers-grow-only t) 51 51 '(display-line-numbers-width-start t) 52 52 '(evil-undo-system 'undo-redo) ··· 125 125 ;; Package/Theme configuration 126 126 ;; ---------------------------------------------------------------------- 127 127 ;; Directory for non-package (require) calls 128 - (add-to-list 'load-path "~/.emacs.d/lisp/") 129 - 130 - 128 + (add-to-list 'load-path "~/.config/emacs/lisp/") 131 129 132 130 ;; For macOS, we can use builtin Apple emoji to render unicode nicely 133 131 (when (member "Apple Color Emoji" (font-family-list))
.emacs.d/lisp/evil-adjust.el .config/emacs/lisp/evil-adjust.el
-10
.gdbinit
··· 1 - add-auto-load-safe-path ~ 2 - # set startup-with-shell off 3 - 4 - # source ~/.config/gdb/init.py 5 - set index-cache on 6 - 7 - set substitute-path /home/fincs/git/pacman-packages/libctru/src/libctru-2.1.1/ /Users/ianchamberlain/Documents/Development/3ds/libctru/ 8 - 9 - set history save 10 - set history filename ~/.gdb_history
.gitconfig .config/git/config
.inputrc .config/readline/inputrc