dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 5b5510067010c9496de6c2348ea9f00fc959b162
parent 2e03554ec3fa622d0fba6ca386d1d4603628024d
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 20 Aug 2024 17:54:01 -0700

vim: add Dart language server support

I hardly code in Dart these days, and I suspect if I do, it'll be in the
engine where we don't have a pubspec, so it probably won't work. Plus in
my experience the Dart language server is slow, unresponsive, and buggy,
but still, let's git it a shot.

Diffstat:
M.config/nvim/lsp.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.config/nvim/lsp.lua b/.config/nvim/lsp.lua @@ -1 +1,2 @@ require'lspconfig'.clangd.setup{} +require'lspconfig'.dartls.setup{}