From 2ceeed9040d0b5a015fd634122afcf35f432ba45 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 26 Nov 2023 02:03:29 +0300 Subject: 2023-11-26 --- modules/common/emacs/doom/config.el | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'modules/common/emacs/doom/config.el') diff --git a/modules/common/emacs/doom/config.el b/modules/common/emacs/doom/config.el index 257a3ea..dee3d3d 100644 --- a/modules/common/emacs/doom/config.el +++ b/modules/common/emacs/doom/config.el @@ -32,6 +32,16 @@ lsp-file-watch-threshold 4096 lsp-modeline-code-actions-enable nil) +;; +;;; Go +;; + +(setq lsp-go-analyses '((shadow . t) + (unsedvariable . t) + (unusedparams . t) + (unusedwrite . t) + (useany . t))) + ;; ;;; Org ;; @@ -106,6 +116,13 @@ org-roam-ui-update-on-save t org-roam-ui-open-on-start t)) +;; +;;; LaTeX +;; + +(map! :map cdlatex-mode-map + :i "TAB" #'cdlatex-tab) + ;; ;;; PlantUML ;; @@ -186,6 +203,18 @@ (+pass-get-secret "server/soju.manwe.shire.net/azahi")))) '("libera" "oftc" "hackint" "rizon"))) +;; +;;; Fcitx +;; + +(use-package! fcitx + :after evil + :config + (when (setq fcitx-remote-command + (or (executable-find "fcitx5-remote") + (executable-find "fcitx-remote"))) + (fcitx-evil-turn-on))) + ;; ;;; Hledger ;; -- cgit 1.4.1