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) (require 'init-funcs)
;; Tree-sitter support ;; Tree-sitter support
(use-package treesit-auto ;; (use-package treesit-auto
:hook (after-init . global-treesit-auto-mode) ;; :hook (after-init . global-treesit-auto-mode)
:init (setq treesit-auto-install 'prompt)) ;; :init (setq treesit-auto-install 'prompt))
;; Search tool ;; Search tool
(use-package grep (use-package grep

View File

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