this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

rounded somethign

+8
+8
home/profiles/nvim/default.nix
··· 467 467 } 468 468 ) 469 469 470 + local orig_util_open_floating_preview = vim.lsp.util.open_floating_preview 471 + function vim.lsp.util.open_floating_preview(contents, syntax, opts, ...) 472 + opts = opts or {} 473 + opts.border = opts.border or 'rounded' 474 + return orig_util_open_floating_preview(contents, syntax, opts, ...) 475 + end 476 + 477 + 470 478 vim.api.nvim_set_keymap('n', '<leader>vt', ':call v:lua.toggle_diagnostics()<CR>', {noremap = true, silent = true}) 471 479 472 480 -- autopairs