Compare commits

..

2 Commits

Author SHA1 Message Date
Tom Alexander
35709eb06a
Enable shellcheck in bash-ts-mode. 2023-09-14 14:25:42 -04:00
Tom Alexander
25c2f2753b
Disable keybind in org-bullets. 2023-09-14 13:39:46 -04:00
3 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@
(use-package bash-ts-mode (use-package bash-ts-mode
:ensure nil :ensure nil
:commands (bash-ts-mode) :commands (bash-ts-mode)
:hook (
(bash-ts-mode . (lambda ()
(flymake-mode +1)
)))
:init :init
(add-to-list 'major-mode-remap-alist '(sh-mode . bash-ts-mode)) (add-to-list 'major-mode-remap-alist '(sh-mode . bash-ts-mode))
(add-to-list 'treesit-language-source-alist '(bash "https://github.com/tree-sitter/tree-sitter-bash")) (add-to-list 'treesit-language-source-alist '(bash "https://github.com/tree-sitter/tree-sitter-bash"))

View File

@ -67,7 +67,6 @@
(use-package org-bullets (use-package org-bullets
:commands org-bullets-mode :commands org-bullets-mode
:hook (org-mode . org-bullets-mode) :hook (org-mode . org-bullets-mode)
:bind ((:map org-mode-map ([remap fill-paragraph] . unfill-toggle)))
) )
(use-package gnuplot-mode) (use-package gnuplot-mode)

View File

@ -13,6 +13,7 @@
- pyright - pyright
- gopls - gopls
- typescript-language-server - typescript-language-server
- shellcheck
state: present state: present
- name: Create directories - name: Create directories