fish: updated starshipt

This commit is contained in:
gyoder 2025-07-05 23:24:40 -06:00
parent deb27f8c81
commit f67e62bf40
6 changed files with 61 additions and 2 deletions

View file

@ -54,6 +54,14 @@ vim.lsp.enable("gopls")
vim.lsp.enable("tinymist")
vim.lsp.config('textlsp', {
on_attach = function()
print('textlsp is now active in this file')
end,
})
vim.lsp.enable("textlsp")
-- https://lsp-zero.netlify.app/blog/lsp-client-features.html
vim.opt.completeopt = {'menu', 'menuone', 'noselect', 'noinsert'}