diff --git a/.config/dconf/user b/.config/dconf/user index 8b9cdfe..331677c 100644 Binary files a/.config/dconf/user and b/.config/dconf/user differ diff --git a/.config/niri/config.kdl b/.config/niri/config.kdl index 7a04b5a..26ec888 100644 --- a/.config/niri/config.kdl +++ b/.config/niri/config.kdl @@ -13,8 +13,8 @@ input { // For more information, see xkeyboard-config(7). // For example: - layout "de" - // options "grp:win_space_toggle,compose:ralt,ctrl:nocaps" + layout "de(us)" + options "caps:escape" // If this section is empty, niri will fetch xkb settings // from org.freedesktop.locale1. You can control these using diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 2aefffb..e226ec8 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -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', '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', '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', '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', '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 = {