*

j3s.sh 51141e88 ecf9bd06

verified
+10 -5
+5
.config/git/config
··· 51 format = ssh 52 [commit] 53 gpgsign = true
··· 51 format = ssh 52 [commit] 53 gpgsign = true 54 + [filter "lfs"] 55 + smudge = git-lfs smudge -- %f 56 + process = git-lfs filter-process 57 + required = true 58 + clean = git-lfs clean -- %f
+1 -1
.config/niri/config.kdl
··· 229 // Uncomment this line to ask the clients to omit their client-side decorations if possible. 230 // If the client will specifically ask for CSD, the request will be honored. 231 // Additionally, clients will be informed that they are tiled, removing some rounded corners. 232 - // prefer-no-csd 233 234 // You can change the path where screenshots are saved. 235 // A ~ at the front will be expanded to the home directory.
··· 229 // Uncomment this line to ask the clients to omit their client-side decorations if possible. 230 // If the client will specifically ask for CSD, the request will be honored. 231 // Additionally, clients will be informed that they are tiled, removing some rounded corners. 232 + prefer-no-csd 233 234 // You can change the path where screenshots are saved. 235 // A ~ at the front will be expanded to the home directory.
+4 -4
.config/nvim/init.lua
··· 43 -- Mappings. 44 -- See `:help vim.lsp.*` for documentation on any of the below functions 45 local bufopts = { noremap=true, silent=true, buffer=bufnr } 46 - vim.keymap.set('n', 'gd', builtin.lsp_definitions, bufopts) 47 - vim.keymap.set('n', 'gi', builtin.lsp_implementations, bufopts) 48 - vim.keymap.set('n', 'gr', builtin.lsp_references, bufopts) 49 vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts) 50 vim.keymap.set('n', '<C-k>', vim.lsp.buf.hover, bufopts) 51 - vim.keymap.set('n', '<space>D', builtin.lsp_type_definitions, bufopts) 52 vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts) 53 end 54
··· 43 -- Mappings. 44 -- See `:help vim.lsp.*` for documentation on any of the below functions 45 local bufopts = { noremap=true, silent=true, buffer=bufnr } 46 + -- vim.keymap.set('n', 'gd', builtin.lsp_definitions, bufopts) 47 + -- vim.keymap.set('n', 'gi', builtin.lsp_implementations, bufopts) 48 + -- vim.keymap.set('n', 'gr', builtin.lsp_references, bufopts) 49 vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts) 50 vim.keymap.set('n', '<C-k>', vim.lsp.buf.hover, bufopts) 51 + -- vim.keymap.set('n', '<space>D', builtin.lsp_type_definitions, bufopts) 52 vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts) 53 end 54