Merge branch 'master' of https://git.cscherr.de/PlexSheep/neovim-confs
This commit is contained in:
commit
5129a923f0
4 changed files with 454 additions and 442 deletions
|
@ -84,7 +84,8 @@ vim.keymap.set('n', '<leader>wk', '<cmd>tabnext<cr>', { desc = 'Next [W]orkspace
|
|||
vim.keymap.set('n', '<leader>wj', '<cmd>tabprevious<cr>', { desc = 'Last [W]orkspace/Tab' })
|
||||
vim.keymap.set('n', '<leader>n', '<cmd>enew<cr>', { desc = '[N]ew Buffer' })
|
||||
|
||||
vim.keymap.set('t', '<C-w>', vim.api.nvim_replace_termcodes('<C-\\><C-N>', true, true, true), { desc = 'Leave terminal mode' })
|
||||
vim.keymap.set('t', '<C-w>', vim.api.nvim_replace_termcodes('<C-\\><C-N>', true, true, true),
|
||||
{ desc = 'Leave terminal mode' })
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Editing
|
||||
|
@ -143,7 +144,14 @@ vim.keymap.set('n', '<leader>fw', function()
|
|||
end, { desc = '[F]ormat remove [W]hitespace' })
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Formating
|
||||
-- Diagnostics
|
||||
--------------------------------------------------------------------------------
|
||||
vim.keymap.set({ 'i', 'n', 'v' }, '<S-A-k>', function()
|
||||
vim.diagnostic.open_float()
|
||||
end)
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Ignore
|
||||
--------------------------------------------------------------------------------
|
||||
-- discard F15
|
||||
vim.keymap.set({ 'i', 't', 'x', 'n', 'v' }, '<F15>', '<Nop>')
|
||||
|
|
|
@ -50,6 +50,7 @@ return {
|
|||
-- You can use a sub-list to tell conform to run *until* a formatter
|
||||
-- is found.
|
||||
javascript = { 'prettier' },
|
||||
asm = { "asmfmt" }
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -347,13 +347,4 @@ return {
|
|||
dependencies_bin = { ['tinymist'] = 'tinymist' }, -- use mason
|
||||
}, -- lazy.nvim will implicitly calls `setup {}`
|
||||
},
|
||||
{
|
||||
'hedyhli/outline.nvim',
|
||||
lazy = true,
|
||||
cmd = { 'Outline', 'OutlineOpen' },
|
||||
keys = { -- Example mapping to toggle outline
|
||||
{ '<leader>to', '<cmd>Outline<CR>', desc = 'Toggle outline' },
|
||||
},
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -631,3 +631,15 @@ Mitgliedern
|
|||
Immunitätsrecht
|
||||
GN
|
||||
Normebene
|
||||
ALgorithmus
|
||||
implementation/!
|
||||
Implementation
|
||||
datentypen/!
|
||||
Datentypen
|
||||
Toolchain
|
||||
Ceedling
|
||||
tests/!
|
||||
Tests
|
||||
Unit
|
||||
Unity
|
||||
Build
|
||||
|
|
Loading…
Add table
Reference in a new issue