system changes
This commit is contained in:
parent
6546bf57c0
commit
700c02e146
2 changed files with 24 additions and 22 deletions
|
@ -81,6 +81,28 @@ This package helps visually match delimiter pairs.
|
||||||
(prog-mode . rainbow-delimiters-mode))
|
(prog-mode . rainbow-delimiters-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Highlight comment tags like =TODO= and whatnot.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package comment-tags
|
||||||
|
:init
|
||||||
|
(setq comment-tags-keyword-faces
|
||||||
|
`(("TODO" . ,(list :weight 'bold :foreground "#28ABE3"))
|
||||||
|
("FIXME" . ,(list :weight 'bold :foreground "#DB3340"))
|
||||||
|
("BUG" . ,(list :weight 'bold :foreground "#DB3340"))
|
||||||
|
("HACK" . ,(list :weight 'bold :foreground "#E8B71A"))
|
||||||
|
("KLUDGE" . ,(list :weight 'bold :foreground "#E8B71A"))
|
||||||
|
("XXX" . ,(list :weight 'bold :foreground "#F7EAC8"))
|
||||||
|
("INFO" . ,(list :weight 'bold :foreground "#F7EAC8"))
|
||||||
|
("DONE" . ,(list :weight 'bold :foreground "#1FDA9A"))))
|
||||||
|
(setq comment-tags-comment-start-only t
|
||||||
|
comment-tags-require-colon t
|
||||||
|
comment-tags-case-sensitive t
|
||||||
|
comment-tags-show-faces t
|
||||||
|
comment-tags-lighter t)
|
||||||
|
:hook
|
||||||
|
(prog-mode . comment-tags-mode))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** macOS
|
** macOS
|
||||||
|
|
||||||
This improves the look of the title-bar on macOS to make it look like other native applications.
|
This improves the look of the title-bar on macOS to make it look like other native applications.
|
||||||
|
@ -723,28 +745,6 @@ Configure =org-mode=. I use =~/org= as my =org= directory and hide emphasis mark
|
||||||
(org-level-6 ((t (:inherit outline-6)))))
|
(org-level-6 ((t (:inherit outline-6)))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Highlight comment tags like =TODO= and whatnot.
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package comment-tags
|
|
||||||
:init
|
|
||||||
(setq comment-tags-keyword-faces
|
|
||||||
`(("TODO" . ,(list :weight 'bold :foreground "#28ABE3"))
|
|
||||||
("FIXME" . ,(list :weight 'bold :foreground "#DB3340"))
|
|
||||||
("BUG" . ,(list :weight 'bold :foreground "#DB3340"))
|
|
||||||
("HACK" . ,(list :weight 'bold :foreground "#E8B71A"))
|
|
||||||
("KLUDGE" . ,(list :weight 'bold :foreground "#E8B71A"))
|
|
||||||
("XXX" . ,(list :weight 'bold :foreground "#F7EAC8"))
|
|
||||||
("INFO" . ,(list :weight 'bold :foreground "#F7EAC8"))
|
|
||||||
("DONE" . ,(list :weight 'bold :foreground "#1FDA9A"))))
|
|
||||||
(setq comment-tags-comment-start-only t
|
|
||||||
comment-tags-require-colon t
|
|
||||||
comment-tags-case-sensitive t
|
|
||||||
comment-tags-show-faces t
|
|
||||||
comment-tags-lighter t)
|
|
||||||
:hook
|
|
||||||
(prog-mode . comment-tags-mode))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
** CMake
|
** CMake
|
||||||
|
|
||||||
Install =cmake-mode=.
|
Install =cmake-mode=.
|
||||||
|
|
|
@ -34,6 +34,7 @@ Import configurations for programs and install programs with no configuration.
|
||||||
go
|
go
|
||||||
gopls
|
gopls
|
||||||
gpgme
|
gpgme
|
||||||
|
haskell-language-server
|
||||||
htop
|
htop
|
||||||
hunspell
|
hunspell
|
||||||
hyfetch # TODO: configure
|
hyfetch # TODO: configure
|
||||||
|
@ -60,6 +61,7 @@ Import configurations for programs and install programs with no configuration.
|
||||||
rustup
|
rustup
|
||||||
shellcheck
|
shellcheck
|
||||||
shfmt
|
shfmt
|
||||||
|
stack
|
||||||
texliveFull
|
texliveFull
|
||||||
typescript-language-server
|
typescript-language-server
|
||||||
vscode-langservers-extracted
|
vscode-langservers-extracted
|
||||||
|
|
Loading…
Add table
Reference in a new issue