updates
This commit is contained in:
parent
84b57e8ab2
commit
f82c408f89
7 changed files with 25 additions and 4 deletions
BIN
..gitignore.un~
Normal file
BIN
..gitignore.un~
Normal file
Binary file not shown.
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -260,3 +260,6 @@ filezilla/
|
|||
obsidian/
|
||||
sqlitebrowser/
|
||||
pdfarranger/
|
||||
abiword/
|
||||
kalk/
|
||||
netsurf/
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
(setq display-line-numbers-type t)
|
||||
(setq doom-font (font-spec :family "JetBrainsMono" :size 11.0))
|
||||
(setq doom-theme 'doom-material)
|
||||
(setq default-frame-alist '((undecorated . t)))
|
||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||
;;(setq default-frame-alist '((undecorated . t)))
|
||||
;;(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||
(scroll-bar-mode 0)
|
||||
|
||||
;; org mode
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
;;elm ; care for a cup of TEA?
|
||||
emacs-lisp ; drown in parentheses
|
||||
;;erlang ; an elegant language for a more civilized age
|
||||
;;ess ; emacs speaks statistics
|
||||
ess ; emacs speaks statistics
|
||||
;;factor
|
||||
;;faust ; dsp, but you get to keep your soul
|
||||
;;fortran ; in FORTRAN, GOD is REAL (unless declared INTEGER)
|
||||
|
|
|
@ -9,3 +9,4 @@ PATH="$HOME/.local/bin${PATH:+:${PATH}}"
|
|||
PATH="$HOME/.local/state/nix/profile/bin${PATH:+:${PATH}}"
|
||||
PATH="$HOME/.config/emacs/bin${PATH:+:${PATH}}"
|
||||
PATH="$HOME/.local/share/go/bin${PATH:+:${PATH}}"
|
||||
PATH="$HOME/.local/share/pyenv/shims${PATH:+:${PATH}}"
|
||||
|
|
16
shell/profile.d/pyenv.sh
Normal file
16
shell/profile.d/pyenv.sh
Normal file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
# export PYENV_ROOT="$HOME/.pyenv" # Already in xdgspec.sh
|
||||
[ -d $PYENV_ROOT/bin ] && export PATH="$PYENV_ROOT/bin:$PATH"
|
||||
# export PATH="$HOME/.pyenv/shims:${PATH}" # Already set in path.sh
|
||||
export PYENV_SHELL=bash
|
||||
command pyenv rehash 2>/dev/null
|
||||
|
||||
pyenv() {
|
||||
local command=${1:-}
|
||||
[ "$#" -gt 0 ] && shift
|
||||
case "$command" in
|
||||
rehash|shell) eval "$(pyenv "sh-$command" "$@")";;
|
||||
*) command pyenv "$command" "$@";;
|
||||
esac
|
||||
}
|
|
@ -29,4 +29,5 @@ export \
|
|||
GIT_SSH_COMMAND="ssh -F ${XDG_CONFIG_HOME}/ssh/config" \
|
||||
ZDOTDIR="$XDG_CONFIG_HOME/shell" \
|
||||
NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc \
|
||||
IPYTHONDIR="$XDG_CONFIG_HOME/ipython"
|
||||
IPYTHONDIR="$XDG_CONFIG_HOME/ipython" \
|
||||
PYENV_ROOT="$XDG_DATA_HOME"/pyenv
|
||||
|
|
Loading…
Reference in a new issue