this repo has no description
1
fork

Configure Feed

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

chore: style NeoVim LSP windows

+8
+8
vim/.config/nvim/fnl/langclient.fnl
··· 6 6 (import-macros logger :nvim.logger) 7 7 (import-macros {: augroup} :nvim) 8 8 9 + (let [lsp vim.lsp 10 + border :rounded] 11 + (tset (require :lspconfig.ui.windows) :default_options {:border border}) 12 + (set lsp.handlers.textDocument/hover (lsp.with lsp.handlers.hover {:border border})) 13 + (set lsp.handlers.textDocument/signatureHelp (lsp.with lsp.handlers.signature_help {:border border})) 14 + (vim.diagnostic.config {:float {:border border} :virtual_text false}) 15 + ) 16 + 9 17 (fn on_attach [client] 10 18 (cmd.packadd! :fidget.nvim) 11 19 ((. (require :fidget) :setup) {})