diff options
Diffstat (limited to '.emacs.d')
| -rw-r--r-- | .emacs.d/init.el | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index dc23369..c8e588d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -11,6 +11,12 @@ :ensure t :config (which-key-mode)) +(use-package evil + :ensure t) + +(use-package vterm + :ensure t) + (use-package emacs :config (setq major-mode-remap-alist @@ -32,6 +38,10 @@ ((prog-mode . electric-pair-mode) (compilation-filter . ansi-color-compilation-filter))) +(use-package tramp + :custom + (tramp-default-method "sshx")) + (use-package project :custom (when (>= emacs-major-version 30) @@ -87,6 +97,34 @@ (prog-mode . flyspell-prog-mode))) (use-package emacs + :config + (add-to-list 'custom-theme-load-path "~/.emacs.d/everforest-theme") + (load-theme 'everforest-hard-dark t)) + +;; (use-package doom-themes +;; :ensure t + +;; :custom +;; ;; Global settings (defaults) +;; (doom-themes-enable-bold t) ; if nil, bold is universally disabled +;; (doom-themes-enable-italic t) ; if nil, italics is universally disabled +;; ;; for treemacs users +;; (doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme +;; (doom-theme 'doom-everforest) + +;; :config +;; (load-theme 'doom-everforest t) + +;; ;; Enable flashing mode-line on errors +;; (doom-themes-visual-bell-config) +;; ;; Enable custom neotree theme (nerd-icons must be installed!) +;; (doom-themes-neotree-config) +;; ;; or for treemacs users +;; (doom-themes-treemacs-config) +;; ;; Corrects (and improves) org-mode's native fontification. +;; (doom-themes-org-config)) + +(use-package emacs :hook ((before-save . delete-trailing-whitespace)) :bind (("s-SPC" . cycle-spacing)) @@ -97,7 +135,7 @@ (tab-width 2) (custom-file (concat user-emacs-directory "custom.el")) (display-line-numbers 'relative) - (backup-directory-alist '(("." . "~/.ema:Cs.d/backups"))) + (backup-directory-alist '(("." . "~/.emacs.d/backups"))) (auto-save-default nil) :config @@ -105,7 +143,6 @@ (load custom-file)) (set-scroll-bar-mode nil) (setq-default indent-tabs-mode t) - (load-theme 'noctalia t) (electric-indent-mode +1) (setq ido-enable-flex-matching t) (setq ido-everywhere t) |
