···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
233234// 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
233234// 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)
53end
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)
53end
54