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

Binary file not shown.

View file

@ -13,8 +13,8 @@ input {
// For more information, see xkeyboard-config(7). // For more information, see xkeyboard-config(7).
// For example: // For example:
layout "de" layout "de(us)"
// options "grp:win_space_toggle,compose:ralt,ctrl:nocaps" options "caps:escape"
// If this section is empty, niri will fetch xkb settings // If this section is empty, niri will fetch xkb settings
// from org.freedesktop.locale1. You can control these using // from org.freedesktop.locale1. You can control these using

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" }) vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
require("mason").setup() 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, 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, 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, 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, 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({ vim.diagnostic.config({
signs = { signs = {