change keyboard layout to de(us)

This commit is contained in:
Never Gude 2026-01-20 16:44:06 +01:00
parent 686a3ece75
commit 7ae3946456
3 changed files with 7 additions and 7 deletions

View file

@ -143,16 +143,16 @@ require("nvim-treesitter").install('lua', 'latex', 'c', 'java', 'ocaml')
vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
require("mason").setup()
vim.lsp.enable({'lua_ls', 'texlab', 'clangd', 'ocaml-lsp'})
vim.lsp.enable({'lua_ls', 'texlab', 'clangd', 'jdtls', 'ocaml-lsp'})
vim.keymap.set('n', '<leader>lf', vim.lsp.buf.format,
{ desc = 'Formats a buffer using the attached language server clients.' })
{ desc = 'Formats a buffer using the attached language server clients' })
vim.keymap.set('n', '<leader>lh', vim.lsp.buf.hover,
{ desc = 'Displays hover information about the symbol under the cursor.' })
{ desc = 'Displays hover information about the symbol' })
vim.keymap.set('n', '<leader>lr', vim.lsp.buf.rename,
{ desc = 'Renames all references to the symbol under the cursor.' })
{ desc = 'Renames all references to the symbol' })
vim.keymap.set('n', '<leader>ld', vim.lsp.buf.definition,
{ desc = 'Jumps to the definition of the symbol under the cursor.' })
{ desc = 'Jumps to the definition of the symbol' })
vim.diagnostic.config({
signs = {