This commit is contained in:
jhe 2024-06-13 15:21:04 +02:00
parent bc16c39a59
commit f0d9ed52c0
No known key found for this signature in database
GPG Key ID: 10FFC60F6B8DC9B7
3 changed files with 38 additions and 15 deletions

View File

@ -69,8 +69,6 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10 vim.opt.scrolloff = 10
vim.g.copilot_suggestions = 5
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`
@ -123,6 +121,13 @@ if not vim.loop.fs_stat(lazypath) then
end ---@diagnostic disable-next-line: undefined-field end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
-- !!!!!!!!!!!!!!!!!!!!! --
vim.filetype.add {
pattern = {
['.*idcl'] = 'idcl',
},
}
-- [[ Configure and install plugins ]] -- [[ Configure and install plugins ]]
-- To check the current status of your plugins, run -- To check the current status of your plugins, run
-- :Lazy -- :Lazy
@ -154,11 +159,11 @@ require('lazy').setup({
}, },
}) })
local lspconfig = require 'lspconfig' -- local lspconfig = require 'lspconfig'
--
-- Disable diagnostics and warnings for clangd -- -- Disable diagnostics and warnings for clangd
lspconfig.clangd.setup { -- lspconfig.clangd.setup {
handlers = { -- handlers = {
['textDocument/publishDiagnostics'] = function() end, -- ['textDocument/publishDiagnostics'] = function() end,
}, -- },
} -- }

View File

@ -155,11 +155,7 @@ return { -- LSP Configuration & Plugins
-- - settings (table): Override the default settings passed when initializing the server. -- - settings (table): Override the default settings passed when initializing the server.
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
local servers = { local servers = {
clangd = { clangd = {},
diagnostics = {
enable = false,
},
},
-- gopls = {}, -- gopls = {},
pyright = {}, pyright = {},
-- rust_analyzer = {}, -- rust_analyzer = {},
@ -216,5 +212,14 @@ return { -- LSP Configuration & Plugins
end, end,
}, },
} }
local lspconfig = require 'lspconfig'
-- Disable diagnostics and warnings for clangd
lspconfig.clangd.setup {
handlers = {
['textDocument/publishDiagnostics'] = function() end,
},
}
end, end,
} }

View File

@ -28,5 +28,18 @@ return { -- Highlight, edit, and navigate code
-- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod` -- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod`
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
--
local parser_config = require('nvim-treesitter.parsers').get_parser_configs()
parser_config.idcl = {
install_info = {
url = '/home/jhe/src/tree-sitter-idcl', -- Path to the tree-sitter-idcl repo
files = { 'src/parser.c' },
-- optional entries:
branch = 'master', -- default branch in case of git repo if different from master
generate_requires_npm = false, -- if stand-alone parser without npm dependencies
requires_generate_from_grammar = false, -- if folder contains pre-generated src/parser.c
},
}
end, end,
} }