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
|
**/.DS_Store
|
||||||
lua/custom/secret
|
lua/custom/secret
|
||||||
lua/custom/configs/secret
|
lua/custom/configs/secret
|
||||||
|
spell/en.utf-8.add.spl
|
||||||
|
|
|
@ -91,7 +91,7 @@ return {
|
||||||
server_opts = LTEX_SETTINGS, -- or use lspconfig regularly
|
server_opts = LTEX_SETTINGS, -- or use lspconfig regularly
|
||||||
}
|
}
|
||||||
map('<leader>tS', function()
|
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.spelllang = 'en,de_de'
|
||||||
vim.opt.spellsuggest = 'double,50,timeout:5000'
|
vim.opt.spellsuggest = 'double,50,timeout:5000'
|
||||||
vim.cmd 'LspStart ltex'
|
vim.cmd 'LspStart ltex'
|
||||||
|
|
|
@ -100,6 +100,7 @@ return {
|
||||||
keys = {
|
keys = {
|
||||||
{ '<F5>', '<cmd> NvimTreeToggle <cr>', desc = '[T]oggle [F]ile explorer' },
|
{ '<F5>', '<cmd> NvimTreeToggle <cr>', desc = '[T]oggle [F]ile explorer' },
|
||||||
{ '<leader>tf', '<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
|
-- TODO: better map for cd
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -544,7 +545,8 @@ return {
|
||||||
local label = {}
|
local label = {}
|
||||||
|
|
||||||
for severity, icon in pairs(icons) do
|
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
|
if n > 0 then
|
||||||
table.insert(label, { icon .. ' ' .. n .. ' ', group = 'DiagnosticSign' .. severity })
|
table.insert(label, { icon .. ' ' .. n .. ' ', group = 'DiagnosticSign' .. severity })
|
||||||
end
|
end
|
||||||
|
|
|
@ -592,3 +592,10 @@ multiparadigmatische
|
||||||
multiparadigmatisches
|
multiparadigmatisches
|
||||||
datastructure
|
datastructure
|
||||||
wellbeing
|
wellbeing
|
||||||
|
implementierung/!
|
||||||
|
RFC1662
|
||||||
|
Implementierung
|
||||||
|
Redundanzprüfung
|
||||||
|
RevEng
|
||||||
|
geflasht
|
||||||
|
HDLC
|
||||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue