emacs : disable treesitter to use verilog-mode

This commit is contained in:
2024-09-02 17:19:49 +09:00
parent f4d5ef8531
commit 33254b574b
2 changed files with 6 additions and 6 deletions

View File

@ -4,9 +4,9 @@
(require 'init-funcs)
;; Tree-sitter support
(use-package treesit-auto
:hook (after-init . global-treesit-auto-mode)
:init (setq treesit-auto-install 'prompt))
;; (use-package treesit-auto
;; :hook (after-init . global-treesit-auto-mode)
;; :init (setq treesit-auto-install 'prompt))
;; Search tool
(use-package grep

View File

@ -24,7 +24,7 @@
(setq verilog-ext-feature-list
'(font-lock
xref
;; capf
capf
hierarchy
eglot
;; lsp
@ -32,14 +32,14 @@
beautify
navigation
template
formatter
;; formatter
compilation
imenu
which-func
hideshow
typedefs
time-stamp
block-end-comments
;; block-end-comments
ports))
:config
(verilog-ext-mode-setup))