Skip to content

sdvcrx/lsp-vtsls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

lsp-vtsls

The Emacs lsp-mode client for vtsls , which is an LSP wrapper around TypeScript extension bundled with VSCode.

Installation

Doom Emacs

Add lsp-vtsls:

;; packages.el
(package! lsp-vtsls :recipe (:host github :repo "sdvcrx/lsp-vtsls"))

;; config.el
(use-package! lsp-vtsls
  :after lsp-mode)

Install vtsls LSP:

  • M+x lsp-install-server then select vtsls .

Recommended Setup

(use-package! lsp-vtsls
  :after lsp-mode
  :config
  (setq
   ;; show all LSP doc on minibuffer
   lsp-eldoc-render-all t
   ;; https://github.com/yioneko/vtsls#bad-performance-of-completion
   lsp-vtsls-server-side-fuzzy-match t
   lsp-vtsls-entries-limit 10))

About

lsp-mode client for vtsls

Topics

Resources

License

Stars

Watchers

Forks