small pixel drawing of a pufferfish dotfiles

*
Jes Olson j3s@c3f.net
Tue, 18 Feb 2025 16:46:47 -0500
commit

51141e8857be19f0d5b9ba8a4e8cd44587f58504

parent

ecf9bd06845ddcdf811093826ed731f8f128007c

3 files changed, 10 insertions(+), 5 deletions(-)

jump to
M .config/git/config.config/git/config

@@ -51,3 +51,8 @@ [gpg]

format = ssh [commit] gpgsign = true +[filter "lfs"] + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true + clean = git-lfs clean -- %f
M .config/niri/config.kdl.config/niri/config.kdl

@@ -229,7 +229,7 @@

// Uncomment this line to ask the clients to omit their client-side decorations if possible. // If the client will specifically ask for CSD, the request will be honored. // Additionally, clients will be informed that they are tiled, removing some rounded corners. -// prefer-no-csd +prefer-no-csd // You can change the path where screenshots are saved. // A ~ at the front will be expanded to the home directory.
M .config/nvim/init.lua.config/nvim/init.lua

@@ -43,12 +43,12 @@

-- Mappings. -- See `:help vim.lsp.*` for documentation on any of the below functions local bufopts = { noremap=true, silent=true, buffer=bufnr } - vim.keymap.set('n', 'gd', builtin.lsp_definitions, bufopts) - vim.keymap.set('n', 'gi', builtin.lsp_implementations, bufopts) - vim.keymap.set('n', 'gr', builtin.lsp_references, bufopts) +-- vim.keymap.set('n', 'gd', builtin.lsp_definitions, bufopts) +-- vim.keymap.set('n', 'gi', builtin.lsp_implementations, bufopts) +-- vim.keymap.set('n', 'gr', builtin.lsp_references, bufopts) vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts) vim.keymap.set('n', '<C-k>', vim.lsp.buf.hover, bufopts) - vim.keymap.set('n', '<space>D', builtin.lsp_type_definitions, bufopts) +-- vim.keymap.set('n', '<space>D', builtin.lsp_type_definitions, bufopts) vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts) end