summaryrefslogtreecommitdiff
path: root/emacs.d
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-05-07 19:13:08 +0300
committerLars Wirzenius <liw@liw.fi>2023-05-07 19:13:08 +0300
commit628546b9be2a9d791d03f309f0c7329b3bae6d80 (patch)
treecc54fe63702487aa8154cb3d35aa030ba6da23e7 /emacs.d
parentba84e716d516686784ff2a759a284452e4f94291 (diff)
downloadliw-dot-files-628546b9be2a9d791d03f309f0c7329b3bae6d80.tar.gz
emacs: don't keep local copies of elisp packages in git
Sponsored-by: author
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/custom.el9
-rw-r--r--emacs.d/init.el10
2 files changed, 6 insertions, 13 deletions
diff --git a/emacs.d/custom.el b/emacs.d/custom.el
index 2b81634..466c236 100644
--- a/emacs.d/custom.el
+++ b/emacs.d/custom.el
@@ -3,15 +3,8 @@
;; 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.
- '(lsp-eldoc-render-all t t)
- '(lsp-idle-delay 0.6 t)
- '(lsp-rust-analyzer-cargo-watch-command "clippy" t)
- '(lsp-rust-analyzer-server-display-inlay-hints t t)
- '(lsp-ui-doc-enable nil t)
- '(lsp-ui-peek-always-show t t)
- '(lsp-ui-sideline-show-hover t t)
'(package-selected-packages
- '(editorconfig tab-bar-mode yaml-mode tabbar session pod-mode muttrc-mode mutt-alias magit initsplit htmlize graphviz-dot-mode go-mode folding eproject diminish debian-el csv-mode color-theme-modern browse-kill-ring boxquote bm bar-cursor apache-mode use-package rustic racer python-mode modus-operandi-theme lsp-ui flycheck-rust flycheck-color-mode-line company blacken)))
+ '(flycheck lsp-mode shfmt editorconfig tab-bar-mode yaml-mode tabbar session pod-mode muttrc-mode mutt-alias magit initsplit htmlize graphviz-dot-mode go-mode folding eproject diminish debian-el csv-mode color-theme-modern browse-kill-ring boxquote bm bar-cursor apache-mode use-package rustic racer python-mode modus-operandi-theme lsp-ui flycheck-rust flycheck-color-mode-line company blacken)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/emacs.d/init.el b/emacs.d/init.el
index bcaccba..51ae3dc 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -141,11 +141,11 @@
'(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))
;; UI theme for Emacs.
-(use-package modus-operandi-theme
- :config
- (setq modus-operandi-theme-slanted-constructs t)
- (setq modus-operandi-theme-bold-constructs t)
- (load-theme 'modus-operandi t))
+;(use-package modus-operandi-theme
+; :config
+; (setq modus-operandi-theme-slanted-constructs t)
+; (setq modus-operandi-theme-bold-constructs t)
+; (load-theme 'modus-operandi t))
;; Show trailing whitespace.
(require 'whitespace)