mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 03:55:04 +02:00
dont know how tf to get grammar checking to work for quarto
This commit is contained in:
parent
53aad9f685
commit
ff5785341e
6 changed files with 49 additions and 3 deletions
|
@ -1,5 +1,17 @@
|
|||
-- LSP Plugins
|
||||
return {
|
||||
|
||||
{ -- for lsp features in code cells / embedded code
|
||||
'jmbuhr/otter.nvim',
|
||||
dependencies = {
|
||||
{
|
||||
'neovim/nvim-lspconfig',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
},
|
||||
},
|
||||
opts = {},
|
||||
},
|
||||
|
||||
{
|
||||
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
|
||||
-- used for completion, annotations and signatures of Neovim apis
|
||||
|
@ -222,6 +234,20 @@ return {
|
|||
-- ts_ls = {},
|
||||
--
|
||||
|
||||
julials = {},
|
||||
|
||||
harper_ls = {
|
||||
filetypes = { 'lua', 'markdown', 'quarto' },
|
||||
settings = {
|
||||
['harper-ls'] = {
|
||||
linters = {
|
||||
SentenceCapitalization = false,
|
||||
SpellCheck = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
lua_ls = {
|
||||
-- cmd = { ... },
|
||||
-- filetypes = { ... },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue