changes
This commit is contained in:
parent
63a902644c
commit
50ad780356
5 changed files with 15 additions and 6 deletions
|
@ -2,4 +2,3 @@
|
||||||
|
|
||||||
podman rm -f dev
|
podman rm -f dev
|
||||||
podman build --build-arg SSH_KEY="$(cat ~/.ssh/id_ed25519.pub)" -t debian-dev-env .
|
podman build --build-arg SSH_KEY="$(cat ~/.ssh/id_ed25519.pub)" -t debian-dev-env .
|
||||||
podman run -d --name dev -p 2222:22 debian-dev-env
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||||
;; `load-theme' function. This is the default:
|
;; `load-theme' function. This is the default:
|
||||||
(setq doom-theme 'doom-one)
|
(setq doom-theme 'doom-material)
|
||||||
|
|
||||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
;; they are implemented.
|
;; they are implemented.
|
||||||
|
|
||||||
(setq org-agenda-files '("~/Documents/agenda"))
|
(setq org-agenda-files '("~/Documents/agenda"))
|
||||||
(setq doom-font (font-spec :family "JetBrainsMono" :size 12.0))
|
(setq doom-font (font-spec :family "JetBrainsMono" :size 11.0))
|
||||||
(setq default-frame-alist '((undecorated . t)))
|
(setq default-frame-alist '((undecorated . t)))
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||||
(scroll-bar-mode 0)
|
(scroll-bar-mode 0)
|
||||||
|
|
13
doom/custom.el
Normal file
13
doom/custom.el
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(custom-safe-themes
|
||||||
|
'("da75eceab6bea9298e04ce5b4b07349f8c02da305734f7c0c8c6af7b5eaa9738" "88f7ee5594021c60a4a6a1c275614103de8c1435d6d08cc58882f920e0cec65e" "2721b06afaf1769ef63f942bf3e977f208f517b187f2526f0e57c1bd4a000350" "4990532659bb6a285fee01ede3dfa1b1bdf302c5c3c8de9fad9b6bc63a9252f7" "2078837f21ac3b0cc84167306fa1058e3199bbd12b6d5b56e3777a4125ff6851" "56044c5a9cc45b6ec45c0eb28df100d3f0a576f18eef33ff8ff5d32bac2d9700" "dd4582661a1c6b865a33b89312c97a13a3885dc95992e2e5fc57456b4c545176" "34cf3305b35e3a8132a0b1bdf2c67623bc2cb05b125f8d7d26bd51fd16d547ec" "e4a702e262c3e3501dfe25091621fe12cd63c7845221687e36a79e17cf3a67e0" "014cb63097fc7dbda3edf53eb09802237961cbb4c9e9abd705f23b86511b0a69" default)))
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
|
@ -111,7 +111,6 @@ alias \
|
||||||
qr="qrencode -t ansiutf8" \
|
qr="qrencode -t ansiutf8" \
|
||||||
clip="xsel -ib" \
|
clip="xsel -ib" \
|
||||||
|
|
||||||
[ -f ~/.config/shell/env ] && . ~/.config/shell/env
|
|
||||||
[ -f ~/.config/shell/kit ] && . ~/.config/shell/kit
|
[ -f ~/.config/shell/kit ] && . ~/.config/shell/kit
|
||||||
|
|
||||||
if [ "$(tty)" = "/dev/tty1" ] ; then
|
if [ "$(tty)" = "/dev/tty1" ] ; then
|
||||||
|
|
|
@ -9,5 +9,3 @@ export \
|
||||||
GITLAB="ssh://git@gitlab.com/tavo-wasd" \
|
GITLAB="ssh://git@gitlab.com/tavo-wasd" \
|
||||||
BOOKMARKS="$HOME/Documents/bookmarks" \
|
BOOKMARKS="$HOME/Documents/bookmarks" \
|
||||||
BIB="$HOME/Documents/bibliography" \
|
BIB="$HOME/Documents/bibliography" \
|
||||||
|
|
||||||
export GNUPGHOME="$XDG_DATA_HOME/gnupg"
|
|
||||||
|
|
Loading…
Reference in a new issue