File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 2121 show_in_snippet = true ;
2222 show_on_trigger_character = true ;
2323 } ;
24+ ghost_text . enabled = true ;
2425 documentation . auto_show = true ;
2526 documentation . update_delay_ms = 100 ;
27+ documentation . window . border = "single" ;
2628 } ;
2729 signature . enabled = true ;
2830
Original file line number Diff line number Diff line change 1010 enable = true ;
1111 settings = {
1212 diagnostics . globals = [ "vim" ] ;
13+ runtime . version = "LuaJIT" ;
1314 workspace . library = [
1415 { __raw = ''vim.fn.expand "$VIMRUNTIME/lua"'' ; }
1516 "${ pkgs . vimPlugins . nvchad-ui } /nvchad_types"
6465 ( str : /* lua */ ''
6566 vim.tbl_deep_extend("force", {
6667 on_init = function(client, _)
67- if client.supports_method "textDocument/semanticTokens" then
68- client.server_capabilities.semanticTokensProvider = nil
68+ if vim.fn.has "nvim-0.11" ~= 1 then
69+ if client.supports_method "textDocument/semanticTokens" then
70+ client.server_capabilities.semanticTokensProvider = nil
71+ end
72+ else
73+ if client:supports_method "textDocument/semanticTokens" then
74+ client.server_capabilities.semanticTokensProvider = nil
75+ end
6976 end
7077 end,
7178 capabilities = ${ capabilities }
Original file line number Diff line number Diff line change 44 opts = {
55 laststatus = 3 ;
66 showmode = false ;
7+ splitkeep = "screen" ;
78 cursorlineopt = "number" ;
89 cursorline = true ;
910 clipboard = "unnamedplus" ;
You can’t perform that action at this time.
0 commit comments