Merge branch 'master' of https://git.cscherr.de/PlexSheep/neovim-confs
This commit is contained in:
commit
4db7993212
5 changed files with 679 additions and 669 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -8,3 +8,4 @@ after
|
|||
**/.DS_Store
|
||||
lua/custom/secret
|
||||
lua/custom/configs/secret
|
||||
spell/en.utf-8.add.spl
|
||||
|
|
|
@ -91,7 +91,7 @@ return {
|
|||
server_opts = LTEX_SETTINGS, -- or use lspconfig regularly
|
||||
}
|
||||
map('<leader>tS', function()
|
||||
vim.opt.spell = true -- manually enable spell with `set spell` or `<leader>ts`
|
||||
vim.cmd 'set spell'
|
||||
vim.opt.spelllang = 'en,de_de'
|
||||
vim.opt.spellsuggest = 'double,50,timeout:5000'
|
||||
vim.cmd 'LspStart ltex'
|
||||
|
|
|
@ -100,6 +100,7 @@ return {
|
|||
keys = {
|
||||
{ '<F5>', '<cmd> NvimTreeToggle <cr>', desc = '[T]oggle [F]ile explorer' },
|
||||
{ '<leader>tf', '<cmd> NvimTreeToggle <cr>', desc = '[T]oggle [F]ile explorer' },
|
||||
{ '<leader>fr', '<cmd> NvimTreeRefresh <cr>', desc = '[F]iles [R]efresh' },
|
||||
-- TODO: better map for cd
|
||||
},
|
||||
},
|
||||
|
@ -544,7 +545,8 @@ return {
|
|||
local label = {}
|
||||
|
||||
for severity, icon in pairs(icons) do
|
||||
local n = #vim.diagnostic.get(props.buf, { severity = vim.diagnostic.severity[string.upper(severity)] })
|
||||
local n = #vim.diagnostic.get(props.buf,
|
||||
{ severity = vim.diagnostic.severity[string.upper(severity)] })
|
||||
if n > 0 then
|
||||
table.insert(label, { icon .. ' ' .. n .. ' ', group = 'DiagnosticSign' .. severity })
|
||||
end
|
||||
|
|
|
@ -592,3 +592,10 @@ multiparadigmatische
|
|||
multiparadigmatisches
|
||||
datastructure
|
||||
wellbeing
|
||||
implementierung/!
|
||||
RFC1662
|
||||
Implementierung
|
||||
Redundanzprüfung
|
||||
RevEng
|
||||
geflasht
|
||||
HDLC
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue