rice/doom/config.el

297 lines
9.7 KiB
EmacsLisp
Raw Normal View History

2021-07-28 23:44:53 -07:00
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
;; Place your private configuration here! Remember, you do not need to run 'doom
;; sync' after modifying this file!
;; Some functionality uses this to identify you, e.g. GPG configuration, email
2022-03-11 19:46:47 -08:00
;; clients, file templates and snippets. It is optional.
2021-07-28 23:44:53 -07:00
(setq user-full-name "Kyle Yasuda"
2022-03-11 19:46:47 -08:00
user-mail-address "the.sudacode@gmail.com")
2021-07-28 23:44:53 -07:00
2022-03-11 19:46:47 -08:00
;; Doom exposes five (optional) variables for controlling fonts in Doom:
2021-07-28 23:44:53 -07:00
;;
2022-03-11 19:46:47 -08:00
;; - `doom-font' -- the primary font to use
;; - `doom-variable-pitch-font' -- a non-monospace font (where applicable)
;; - `doom-big-font' -- used for `doom-big-font-mode'; use this for
2021-07-28 23:44:53 -07:00
;; presentations or streaming.
2022-03-11 19:46:47 -08:00
;; - `doom-unicode-font' -- for unicode glyphs
;; - `doom-serif-font' -- for the `fixed-pitch-serif' face
2021-07-28 23:44:53 -07:00
;;
2022-03-11 19:46:47 -08:00
;; See 'C-h v doom-font' for documentation and more examples of what they
;; accept. For example:
;;
;;(setq doom-font (font-spec :family "Fira Code" :size 12 :weight 'semi-light)
;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13))
;;
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
;; refresh your font settings. If Emacs still can't find your font, it likely
;; wasn't installed correctly. Font issues are rarely Doom issues!
2021-07-28 23:44:53 -07:00
;; 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. This is the default:
2021-10-25 18:52:55 -07:00
(setq doom-theme 'doom-one)
2021-07-28 23:44:53 -07:00
2022-11-02 02:15:58 -07:00
(setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 16 :weight 'medium :dpi 144) doom-unicode-font (font-spec :family "JetBrainsMono Nerd Font" :size 16 :weight 'medium :dpi 144))
2022-03-11 19:46:47 -08:00
;; This determines the style of line numbers in effect. If set to `nil', line
;; numbers are disabled. For relative line numbers, set this to `relative'.
(setq display-line-numbers-type t)
2021-07-28 23:44:53 -07:00
;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads!
(setq org-directory "~/org/")
2022-03-11 19:46:47 -08:00
;; Whenever you reconfigure a package, make sure to wrap your config in an
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
;;
;; (after! PACKAGE
;; (setq x y))
;;
;; The exceptions to this rule:
;;
;; - Setting file/directory variables (like `org-directory')
;; - Setting variables which explicitly tell you to set them before their
;; package is loaded (see 'C-h v VARIABLE' to look up their documentation).
;; - Setting doom variables (which start with 'doom-' or '+').
;;
;; Here are some additional functions/macros that will help you configure Doom.
2021-07-28 23:44:53 -07:00
;;
;; - `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.
2022-03-11 19:46:47 -08:00
;; Alternatively, use `C-h o' to look up a symbol (functions, variables, faces,
;; etc).
2021-07-28 23:44:53 -07:00
;;
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; they are implemented.
2022-11-02 02:15:58 -07:00
;; make _ part of word
(defadvice evil-inner-word (around underscore-as-word activate)
(let ((table (copy-syntax-table (syntax-table))))
(modify-syntax-entry ?_ "w" table)
(with-syntax-table table
ad-do-it)))
;; COPILOT ;;
;; accept completion from copilot and fallback to company
(use-package! copilot
:hook (prog-mode . copilot-mode)
:bind (("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word)
:map copilot-completion-map
("C-<spc>" . 'copilot-accept-completion)
("C-SPC" . 'copilot-accept-completion)))
;; (use-package lsp-pyright
;; :ensure t
;; :hook (python-mode . (lambda ()
;; (require 'lsp-pyright)
;; (lsp)))) ; or lsp-deferred
(use-package lsp-jedi
:ensure t
:config
(with-eval-after-load "lsp-mode"
(add-to-list 'lsp-disabled-clients 'pyls)
(add-to-list 'lsp-enabled-clients 'jedi)
(add-to-list 'lsp-enabled-clients 'bash-ls)
(add-to-list 'lsp-enabled-clients 'lsp)))
;; (setq lsp-jedi-workspace-extra-paths
;; (vconcat lsp-jedi-workspace-extra-paths
;; ["/home/me/src/my-project/.venv/lib/python3.10/site-packages"]))
;; EAF ;;
(add-load-path! (expand-file-name "~/Downloads/emacs-application-framework"))
(require 'eaf)
(require 'eaf-pdf-viewer)
(require 'eaf-browser)
(require 'eaf-jupyter)
(require 'eaf-markdown-previewer)
(require 'eaf-image-viewer)
(require 'eaf-org-previewer)
(require 'eaf-video-player)
(require 'eaf-rss-reader)
2022-03-11 19:46:47 -08:00
;;-------;;
;; VTERM ;;
;;-------;;
(after! vterm
(set-popup-rule! "*doom:vterm-popup:main" :size 0.45 :vslot -4 :select t :quit nil :ttl 0 :side 'right)
)
2021-07-28 23:44:53 -07:00
2022-03-11 19:46:47 -08:00
;;----------;;
;; WAKATIME ;;
;;----------;;
(use-package! wakatime-mode :ensure t)
(global-wakatime-mode)
2022-03-11 19:46:47 -08:00
;;-----------;;
;; FIRA CODE ;;
;;-----------;;
;; (use-package! fira-code-mode
;; :hook prog-mode)
2022-03-11 19:46:47 -08:00
;;---------------;;
;; ALL THE ICONS ;;
;;---------------;;
2021-10-26 18:48:16 -07:00
(add-load-path! (expand-file-name "~/Downloads/all-the-icons-dired"))
(load "all-the-icons-dired.el")
2021-11-09 00:59:34 -08:00
(use-package! all-the-icons-dired
:hook (dired-mode . all-the-icons-dired-mode)
:config
(add-to-list 'all-the-icons-icon-alist
'("\\.mkv" all-the-icons-faicon "film"
:face all-the-icons-blue))
(add-to-list 'all-the-icons-icon-alist
'("\\.srt" all-the-icons-octicon "file-text"
:v-adjust 0.0 :face all-the-icons-dcyan))
;; Turn off all-the-icons-dired-mode before wdired-mode
;; TODO: disable icons just before save, not during wdired-mode
(defadvice wdired-change-to-wdired-mode (before turn-off-icons activate)
(all-the-icons-dired-mode -1))
(defadvice wdired-change-to-dired-mode (after turn-on-icons activate)
(all-the-icons-dired-mode 1)))
2021-10-26 18:48:16 -07:00
(add-hook 'dired-mode-hook 'all-the-icons-dired-mode)
2022-11-02 02:15:58 -07:00
;; DIRED ;;
(evil-define-key 'normal dired-mode-map
(kbd "M-i") 'dired-display-file
(kbd "h") 'dired-up-directory
(kbd "l") 'dired-open-file
(kbd "C") 'dired-do-copy
(kbd "D") 'dired-do-delete
(kbd "J") 'dired-goto-file
(kbd "M") 'dired-do-chmod
(kbd "O") 'dired-do-chown
(kbd "P") 'dired-do-print
(kbd "R") 'dired-do-rename
(kbd "T") 'dired-do-touch
(kbd "Y") 'dired-copy-filenamecopy
(kbd "+") 'dired-create-directory
(kbd "-") 'dired-up-directory)
2022-03-11 19:46:47 -08:00
;;-----------;;
;; VARIABLES ;;
;;-----------;;
(setq display-line-numbers-type 'relative)
(setq rainbow-delimiters-mode t)
(setq confirm-kill-emacs nil)
2022-03-11 19:46:47 -08:00
(setq browse-url-browser-function 'browse-url-firefox)
(setq prettify-symbols-mode nil)
(setq +pretty-code-enabled-modes nil)
(setq prettify-symbols-mode nil)
(setq global-prettify-symbols-mode nil)
2022-03-11 19:46:47 -08:00
(setq shfmt-arguments '("-i" "0" "-ci" "-sr"))
;;--------;;
;; HOOKS ;;
;;--------;;
(add-hook 'org-mode-hook #'org-bullets-mode)
(add-hook 'before-save-hook 'py-isort-before-save)
2021-11-29 13:48:24 -08:00
(add-hook 'python-mode-hook #'lsp) ; or lsp-deferred
2022-03-11 19:46:47 -08:00
(add-hook 'sh-mode-hook 'shfmt-on-save-mode 'flycheck-mode)
2021-11-29 13:48:24 -08:00
2022-11-02 02:15:58 -07:00
(setq lsp-ui-sideline-enable t)
(setq lsp-ui-sideline-show-hover t)
(setq lsp-ui-sideline-show-diagnostics t)
(setq lsp-ui-sideline-show-code-actions t)
(setq lsp-ui-sideline-show-code-lenses t)
(setq lsp-ui-sideline-ignore-duplicate t)
(setq lsp-ui-doc-enable t)
(setq lsp-ui-doc-show-with-cursor nil)
(setq lsp-ui-doc-show-with-mouse t)
(setq lsp-ui-doc-position 'at-point)
(setq lsp-ui-doc-header t)
(setq lsp-ui-doc-include-signature t)
(setq lsp-ui-doc-max-width 150)
(setq lsp-ui-doc-max-height 30)
(setq lsp-ui-doc-use-childframe t)
(setq lsp-ui-doc-use-webkit t)
(setq lsp-ui-flycheck-enable t)
(setq lsp-ui-imenu-enable t)
(setq lsp-ui-imenu-kind-position 'top)
(setq lsp-ui-sideline-enable t)
(setq lsp-ui-sideline-show-hover t)
(setq lsp-ui-sideline-show-diagnostics t)
(setq lsp-ui-sideline-show-code-actions t)
(setq lsp-ui-sideline-show-code-lenses t)
(setq lsp-ui-sideline-ignore-duplicate t)
2022-03-11 19:46:47 -08:00
;;--------;;
;; AFTER ;;
;;--------;;
(after! 'treemacs
(define-key treemacs-mode-map [mouse-1] #'treemacs-single-click-expand-action))
2022-03-11 19:46:47 -08:00
;;--------------;;
;; KEYBINDINGS ;;
;;--------------;;
2022-11-02 02:15:58 -07:00
(define-key! "<mouse-9>" #'+popup/toggle)
(map! :leader
(:prefix ("o" . "+open")
:desc "Launch lsp-ui-imenu"
"i" #'lsp-ui-imenu))
2022-11-02 02:15:58 -07:00
(map! :leader
:desc "Toggle lsp-ui-doc"
"c h" #'lsp-ui-doc-glance)
(map! :leader
(:prefix ("c" . "+code")
:desc "LSP Peek"
(:prefix ("p" . "+peek")
:desc "Find references"
"r" #'lsp-ui-peek-find-references)))
(map! :leader
(:prefix ("c" . "+code")
:desc "Peek definition of thing under the cursor"
(:prefix ("p" . "+peek")
:desc "Find definitions"
"d" #'lsp-ui-peek-find-definitions)))
2022-11-02 02:15:58 -07:00
(map! :leader
:desc "Toggle vterm"
"t t" #'+vterm/toggle)
(map! :leader
:desc "Toggle vterm"
"t p" #'+popup/toggle)
(map! :leader
:desc "nohls"
"s c" #'evil-ex-nohighlight)
(map! :leader
:desc "Restart LSP server"
"c R" #'lsp-workspace-restart)
(map! :leader
:desc "Search web"
"o w" #'eaf-open-browser-with-history)
(map! :leader
:desc "Open link under cursor in browser"
"o l" #'eaf-open-url-at-point)
2021-11-09 00:59:34 -08:00
(map! :leader
:desc "Toggle hlline for current buffer"
"t h" #'display-fill-column-indicator-mode)