clearing cache
This commit is contained in:
parent
fda77b2269
commit
bb31b2e38a
2121 changed files with 28 additions and 14 deletions
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))
|
||||
|
||||
(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)
|
||||
(add-to-list 'default-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 "/etc/profiles/per-user/chris/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")
|
||||
|
||||
(setq exec-directory "/run/current-system/sw/bin")
|
||||
;; (setq exec-directory "/usr/bin")
|
||||
(setenv "NIX_CONF_DIR" "/etc/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_PROFILES" "${pkgs.lib.concatStringsSep " " config.environment.profiles}")
|
||||
(setenv "NIX_REMOTE" "daemon")
|
||||
(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
|
||||
|
||||
#+RESULTS:
|
||||
: /nix/var/nix/profiles/per-user/%u
|
||||
|
||||
#+begin_src emacs-lisp :tangle no
|
||||
(use-package exec-path-from-shell
|
||||
:demand
|
||||
|
@ -473,6 +479,8 @@ This evil-collection package includes a lot of other evil based things.
|
|||
(general-def 'normal
|
||||
"gcc" 'comment-line
|
||||
"K" 'helpful-at-point
|
||||
"C-+" 'text-scale-increase
|
||||
"C-_" 'text-scale-decrease
|
||||
"C-S-l" 'evil-window-increase-width
|
||||
"C-S-j" 'evil-window-decrease-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
|
||||
"zw" 'widen
|
||||
"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
|
||||
"C-i" 'completion-at-point)
|
||||
('normal 'org-src-mode-map
|
||||
|
@ -1934,7 +1945,7 @@ LSP is useful...
|
|||
(setq lsp-lens-enable t
|
||||
lsp-signature-auto-activate nil
|
||||
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)
|
||||
(add-to-list 'lsp-language-id-configuration '(qml-mode . "qml"))
|
||||
(lsp-register-client
|
||||
|
@ -2255,7 +2266,7 @@ Ledger mode
|
|||
** MU4E
|
||||
#+begin_src emacs-lisp
|
||||
(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
|
||||
:init
|
||||
(setq mu4e-maildir "~/Maildir"
|
||||
|
@ -2362,8 +2373,7 @@ Ledger mode
|
|||
:query "mime:image/*"
|
||||
:key 112)))
|
||||
|
||||
(setq mu4e-mu-binary "/usr/bin/mu"
|
||||
mu4e-view-prefer-html nil
|
||||
(setq mu4e-view-prefer-html nil
|
||||
shr-color-visible-luminance-min 80)
|
||||
|
||||
(setq mu4e-use-fancy-chars t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue