;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- ;; Place your private configuration here! Remember, you do not need to run 'doom ;; sync' after modifying this file! ;; --- Identity --- (setq user-full-name "Infinidoge" user-mail-address "infinidoge@doge-inc.net" ) ;; --- Appearance --- (setq doom-theme 'doom-one display-line-numbers-type 'relative doom-modeline-enable-word-count t nerd-icons-font-family "Symbols Nerd Fonts Mono" nerd-icons-font-names '("SymbolsNerdFontMono-Regular.ttf") ) ;; --- Projectile ---- (setq projectile-indexing-method 'hybrid projectile-project-search-path '("~/Projects/") ) ;; --- Treemacs --- (use-package! treemacs :init (setq +treemacs-git-mode 'extended) ) ;; --- Deft --- (setq deft-recursive t deft-directory "~/Notes/" ) (map! :map deft-mode-map :n "gr" #'deft-refresh :n "C-s" #'deft-filter :i "C-n" #'deft-new-file :i "C-m" #'deft-new-file-named :i "C-d" #'deft-delete-file :i "C-r" #'deft-rename-file :n "r" #'deft-rename-file :n "a" #'deft-new-file :n "A" #'deft-new-file-named :n "d" #'deft-delete-file :n "D" #'deft-archive-file :n "q" #'kill-current-buffer) ;; --- Tramp --- (setq tramp-default-method "ssh" tramp-terminal-type "tramp" ) ;; --- Flyspell --- (after! flyspell (setq flyspell-lazy-idle-seconds 1)) ;; --- Emms --- ;; (setq ;; emms-volume-change-function 'emms-volume-mpd-change ;; emms-player-mpd-server-name "localhost" ;; emms-player-mpd-server-port "6600" ;; emms-player-mpd-music-directory "~/Music" ;; ) ;; (add-to-list 'emms-info-functions 'emms-info-mpd) ;; (add-to-list 'emms-player-list 'emms-player-mpd) ;; --- GnuPG --- (setq epg-pinentry-mode 'loopback) ;; --- Evil Goggles --- (use-package! evil-goggles :config ;; (evil-goggles-use-diff-faces) ;; (evil-goggles-use-diff-refine-faces) (evil-goggles-use-magit-faces) ) (setq evil-goggles-duration 0.1 evil-goggles-pulse nil evil-goggles-enable-change t evil-goggles-enable-delete t ) ;; (custom-set-faces ;; '(evil-goggles-default-face ((t (:inherit 'highlight))))) ;; --- Undo --- (setq evil-want-fine-undo t undo-limit 80000000 ) ;; --- Nix --- ;; Replace nixfmt in format-all with nixpkgs-fmt (set-formatter! 'nixfmt (list "nixpkgs-fmt") :modes '(nix-mode)) ;; --- JSON --- (setq js-indent-level 2) (after! editorconfig (add-to-list 'editorconfig-indentation-alist '(json-mode js-indent-level))) ;; --- LSP --- (setq lsp-csharp-server-path (executable-find "omnisharp")) (setq lsp-clients-lua-language-server-bin (executable-find "lua-language-server")) (setq lsp-haskell-formatting-provider "ormolu") (setq lsp-java-format-settings-url (concat doom-user-dir "misc/java_formatting.xml")) (setq lsp-java-completion-filtered-types [ "java.awt.List" "com.sun.*" "org.w3c.*" "jdk.*" ]) (after! lsp-mode (add-to-list 'lsp-disabled-clients 'ccls) ) ;; --- --- Original Configuration Comments --- --- ;; Doom exposes five (optional) variables for controlling fonts in Doom. Here ;; are the three important ones: ;; ;; + `doom-font' ;; + `doom-variable-pitch-font' ;; + `doom-big-font' -- used for `doom-big-font-mode'; use this for ;; presentations or streaming. ;; ;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd ;; font string. You generally only need these two: ;; (setq doom-font (font-spec :family "monospace" :size 12 :weight 'semi-light) ;; doom-variable-pitch-font (font-spec :family "sans" :size 13)) ;; 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 ;; `load-theme' function. ;; ;; Here are some additional functions/macros that could help you configure Doom: ;; ;; - `load!' for loading external *.el files relative to this one ;; - `use-package!' for configuring packages ;; - `after!' for running code after a package has loaded ;; - `add-load-path!' for adding directories to the `load-path', relative to ;; this file. Emacs searches the `load-path' when you load packages with ;; `require' or `use-package'. ;; - `map!' for binding new keys ;; ;; To get information about any of these functions/macros, move the cursor over ;; the highlighted symbol at press 'K' (non-evil users must press 'C-c c k'). ;; This will open documentation for it, including demos of how they are used. ;; ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. ;; Other configuration files (load! "config/org") (load! "config/keybindings") (load! "misc/list-mode")