updated spellcheck

This commit is contained in:
venus
2026-03-25 10:44:31 -05:00
parent 44811bbfcd
commit eec1f820fc
5 changed files with 74 additions and 78 deletions

View File

@@ -54,17 +54,6 @@ if theme_ok then
matugen.setup() matugen.setup()
end end
-- grammar support for spellchecker
require('lspconfig').ltex.setup {
filetypes = { "markdown", "text", "tex", "gitcommit" },
settings = {
ltex = {
language = "en-US",
-- You can disable specific rules here if they are too annoying
disabledRules = { ["en-US"] = { "PROPER_NOUN_CAPITALIZATION" } },
},
},
}
-- load lsp and bufferline plugins -- load lsp and bufferline plugins
require("config.lsp") require("config.lsp")

View File

@@ -13,6 +13,7 @@
"hologram.nvim": { "branch": "main", "commit": "f5194f71ec1578d91b2e3119ff08e574e2eab542" }, "hologram.nvim": { "branch": "main", "commit": "f5194f71ec1578d91b2e3119ff08e574e2eab542" },
"inc-rename.nvim": { "branch": "main", "commit": "0074b551a17338ccdcd299bd86687cc651bcb33d" }, "inc-rename.nvim": { "branch": "main", "commit": "0074b551a17338ccdcd299bd86687cc651bcb33d" },
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
"ltex-ls.nvim": { "branch": "main", "commit": "968eac261279d88d7f1ed556aa2dbc535a7489fe" },
"lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "a979821a975897b88493843301950c456a725982" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "a979821a975897b88493843301950c456a725982" },
"mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" }, "mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" },

View File

@@ -4,74 +4,74 @@ return { -- adds lsp functionality and api for included languages
dependencies = { dependencies = {
{ "mason-org/mason.nvim", config = true }, -- The "App Store" { "mason-org/mason.nvim", config = true }, -- The "App Store"
{ "mason-org/mason-lspconfig.nvim", config = true }, -- The "Bridge" { "mason-org/mason-lspconfig.nvim", config = true }, -- The "Bridge"
}, {
}, 'saghen/blink.cmp',
{ version = '*', -- Downloads pre-built binaries (fast!)
'saghen/blink.cmp', opts =
version = '*', -- Downloads pre-built binaries (fast!) {
opts = { keymap = {
keymap = { preset = 'none',
preset = 'none', ['<CR>'] = { 'select_next', 'fallback' },
['<CR>'] = { 'select_next', 'fallback' }, ['<S-CR>'] = { 'select_prev', 'fallback' },
['<S-CR>'] = { 'select_prev', 'fallback' }, ['<Tab>'] = { 'accept', 'fallback' },
['<Tab>'] = { 'accept', 'fallback' }, ['<C-space>'] = { 'show', 'show_documentation', 'hide_documentation' },
['<C-space>'] = { 'show', 'show_documentation', 'hide_documentation' }, },
sources = {
default = { 'lsp', 'path', 'snippets', 'buffer' },
},
},
}, },
sources = { {
default = { 'lsp', 'path', 'snippets', 'buffer' }, 'MeanderingProgrammer/render-markdown.nvim',
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
---@module 'render-markdown'
}, },
}, { -- basic tree sitter parser support
}, "nvim-treesitter/nvim-treesitter",
{ opts = {
'MeanderingProgrammer/render-markdown.nvim', indent = { enable = true },
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite highlight = { enable = true },
---@module 'render-markdown' folds = { enable = true },
}, ensure_installed = {
{ -- basic tree sitter parser support "bash",
"nvim-treesitter/nvim-treesitter", "c",
opts = { "diff",
indent = { enable = true }, "html",
highlight = { enable = true }, "javascript",
folds = { enable = true }, "jsdoc",
ensure_installed = { "json",
"bash", "lua",
"c", "luadoc",
"diff", "luap",
"html", "markdown",
"javascript", "markdown_inline",
"jsdoc", "printf",
"json", "python",
"lua", "query",
"luadoc", "regex",
"luap", "toml",
"markdown", "tsx",
"markdown_inline", "typescript",
"printf", "vim",
"python", "vimdoc",
"query", "xml",
"regex", "yaml",
"toml", "zsh",
"tsx", },
"typescript", }
"vim",
"vimdoc",
"xml",
"yaml",
"zsh",
},
}
},
{ -- Adds git related signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
}, },
}, { -- Adds git related signs to the gutter, as well as utilities for managing changes
}, 'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
},
}
}
} }

View File

@@ -7,3 +7,9 @@ symlinked
Openrc Openrc
dir dir
Picoctf Picoctf
nc
Gaviria
unix
linux
netcat
Ransomware

Binary file not shown.