clearing cache
This commit is contained in:
parent
fda77b2269
commit
bb31b2e38a
26
README.org
26
README.org
|
@ -114,7 +114,7 @@ In order to have this config work on both my desktop with regular joe-schmoe mon
|
||||||
:weight 'regular))
|
:weight 'regular))
|
||||||
|
|
||||||
(defun chris/set-transparency ()
|
(defun chris/set-transparency ()
|
||||||
"Set the frame to be transparent on Wayland compositors"
|
"Set the frame to be transparent but not the text"
|
||||||
(set-frame-parameter (selected-frame) 'alpha-background 85)
|
(set-frame-parameter (selected-frame) 'alpha-background 85)
|
||||||
(add-to-list 'default-frame-alist '(alpha-background . 85))
|
(add-to-list 'default-frame-alist '(alpha-background . 85))
|
||||||
(add-to-list 'initial-frame-alist '(alpha-background . 85)))
|
(add-to-list 'initial-frame-alist '(alpha-background . 85)))
|
||||||
|
@ -300,18 +300,24 @@ I am currently using NixOS. In order for emacs to have access to certain program
|
||||||
(add-to-list 'exec-path "/home/chris/.nix-profile/bin")
|
(add-to-list 'exec-path "/home/chris/.nix-profile/bin")
|
||||||
(add-to-list 'exec-path "/etc/profiles/per-user/chris/bin")
|
(add-to-list 'exec-path "/etc/profiles/per-user/chris/bin")
|
||||||
(add-to-list 'exec-path "/run/current-system/sw/bin")
|
(add-to-list 'exec-path "/run/current-system/sw/bin")
|
||||||
|
(add-to-list 'exec-path "/usr/bin")
|
||||||
(add-to-list 'exec-path "/opt/android-sdk/cmdline-tools/latest/bin")
|
(add-to-list 'exec-path "/opt/android-sdk/cmdline-tools/latest/bin")
|
||||||
|
|
||||||
(setq exec-directory "/run/current-system/sw/bin")
|
;; (setq exec-directory "/usr/bin")
|
||||||
(setenv "NIX_CONF_DIR" "/etc/nix")
|
(setenv "NIX_CONF_DIR" "/etc/nix")
|
||||||
(setenv "NIX_OTHER_STORES" "/run/nix/remote-stores/*/nix")
|
(setenv "NIX_OTHER_STORES" "/run/nix/remote-stores/*/nix")
|
||||||
(setenv "NIX_PATH" "nixpkgs=%h/nixpkgs:nixos=%h/nixpkgs/nixos:nixos-config=/etc/nixos/configuration.nix")
|
(setenv "NIX_PATH" "nixpkgs=%h/nixpkgs:nixos=%h/nixpkgs/nixos:nixos-config=/etc/nixos/configuration.nix")
|
||||||
(setenv "NIX_PROFILES" "${pkgs.lib.concatStringsSep " " config.environment.profiles}")
|
(setenv "NIX_PROFILES" "${pkgs.lib.concatStringsSep " " config.environment.profiles}")
|
||||||
(setenv "NIX_REMOTE" "daemon")
|
(setenv "NIX_REMOTE" "daemon")
|
||||||
(setenv "NIX_USER_PROFILE_DIR" "/nix/var/nix/profiles/per-user/%u")
|
(setenv "NIX_USER_PROFILE_DIR" "/nix/var/nix/profiles/per-user/%u")
|
||||||
(load "site-paths" t)
|
;; (load "site-paths" t)
|
||||||
|
(setenv "CC" "/run/current-system/sw/bin/gcc")
|
||||||
|
(setenv "CXX" "/run/current-system/sw/bin/g++")
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
#+RESULTS:
|
||||||
|
: /nix/var/nix/profiles/per-user/%u
|
||||||
|
|
||||||
#+begin_src emacs-lisp :tangle no
|
#+begin_src emacs-lisp :tangle no
|
||||||
(use-package exec-path-from-shell
|
(use-package exec-path-from-shell
|
||||||
:demand
|
:demand
|
||||||
|
@ -473,6 +479,8 @@ This evil-collection package includes a lot of other evil based things.
|
||||||
(general-def 'normal
|
(general-def 'normal
|
||||||
"gcc" 'comment-line
|
"gcc" 'comment-line
|
||||||
"K" 'helpful-at-point
|
"K" 'helpful-at-point
|
||||||
|
"C-+" 'text-scale-increase
|
||||||
|
"C-_" 'text-scale-decrease
|
||||||
"C-S-l" 'evil-window-increase-width
|
"C-S-l" 'evil-window-increase-width
|
||||||
"C-S-j" 'evil-window-decrease-height
|
"C-S-j" 'evil-window-decrease-height
|
||||||
"C-S-k" 'evil-window-increase-height
|
"C-S-k" 'evil-window-increase-height
|
||||||
|
@ -711,7 +719,10 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
"zn" 'org-narrow-to-subtree
|
"zn" 'org-narrow-to-subtree
|
||||||
"zw" 'widen
|
"zw" 'widen
|
||||||
"S" 'org-schedule
|
"S" 'org-schedule
|
||||||
"t" 'org-todo)
|
"t" 'org-todo
|
||||||
|
"gf" 'org-footnote-action)
|
||||||
|
('visual org-mode-map
|
||||||
|
"gf" 'org-footnote-action)
|
||||||
('insert org-mode-map
|
('insert org-mode-map
|
||||||
"C-i" 'completion-at-point)
|
"C-i" 'completion-at-point)
|
||||||
('normal 'org-src-mode-map
|
('normal 'org-src-mode-map
|
||||||
|
@ -1934,7 +1945,7 @@ LSP is useful...
|
||||||
(setq lsp-lens-enable t
|
(setq lsp-lens-enable t
|
||||||
lsp-signature-auto-activate nil
|
lsp-signature-auto-activate nil
|
||||||
read-process-output-max (* 1024 1024)
|
read-process-output-max (* 1024 1024)
|
||||||
lsp-clangd-binary-path "/run/current-system/sw/bin/clangd")
|
lsp-clangd-binary-path "/usr/bin/clangd")
|
||||||
(lsp-enable-which-key-integration t)
|
(lsp-enable-which-key-integration t)
|
||||||
(add-to-list 'lsp-language-id-configuration '(qml-mode . "qml"))
|
(add-to-list 'lsp-language-id-configuration '(qml-mode . "qml"))
|
||||||
(lsp-register-client
|
(lsp-register-client
|
||||||
|
@ -2255,7 +2266,7 @@ Ledger mode
|
||||||
** MU4E
|
** MU4E
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package mu4e
|
(use-package mu4e
|
||||||
;; :load-path "/etc/profiles/per-user/chris/share/emacs/site-lisp/mu4e/"
|
:load-path "/usr/share/emacs/site-lisp/mu4e/"
|
||||||
:straight nil
|
:straight nil
|
||||||
:init
|
:init
|
||||||
(setq mu4e-maildir "~/Maildir"
|
(setq mu4e-maildir "~/Maildir"
|
||||||
|
@ -2362,8 +2373,7 @@ Ledger mode
|
||||||
:query "mime:image/*"
|
:query "mime:image/*"
|
||||||
:key 112)))
|
:key 112)))
|
||||||
|
|
||||||
(setq mu4e-mu-binary "/usr/bin/mu"
|
(setq mu4e-view-prefer-html nil
|
||||||
mu4e-view-prefer-html nil
|
|
||||||
shr-color-visible-luminance-min 80)
|
shr-color-visible-luminance-min 80)
|
||||||
|
|
||||||
(setq mu4e-use-fancy-chars t
|
(setq mu4e-use-fancy-chars t
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue