Commit 031284e
Update fork (#1)
* Arch, btw (nvim-lua#852)
* Arch, btw
* Add unzip
* Add unzip for Fedora and --needed arg for Arch
* Comment about nerd font selection. Fixes nvim-lua#853 (nvim-lua#854)
* Fix: nvim-lua#847 - add prefer_git to treesitter config (nvim-lua#856)
* Enable inlay hints for the supporting servers (nvim-lua#843)
* Move plugin examples from README to optional plugin files (nvim-lua#831)
* Move autopairs example from README to an optional plugin
* Move neo-tree example from README to an optional plugin
* Add gitsigns recommended keymaps as an optional plugin (nvim-lua#858)
* fix: restore Mason config timing for DAP startup (again) (nvim-lua#865)
* Update README.md (nvim-lua#860)
Attempted fix for nvim-lua#859, provide reasonable Debian install instructions -- comment on GitHub issue with refinement.
* Minor improvements of debian install instructions. Fixes nvim-lua#859 (nvim-lua#869)
* Add a commented out example of the classic complete keymaps. Fixes nvim-lua#866 (nvim-lua#868)
* Fix deprecation notice of inlay hints (nvim-lua#873)
* Fix highlight errors when lsp crash or stop (nvim-lua#864)
* Fix highlight errors when lsp crash or stop
It adds a check wether the client is still available before
highlighting.
If the client is not there anymore it returns `true` to unregister the
autocommand
This fix the
`method textDocument/documentHighlight is not supported by any of the servers registered for the current buffer`
errors when doing a LspRestart or the server crashes
* Delete the highlight autocommands in the LspDetatch event
* Only delete autocmds for the current buffer with the group name
* Simplify clearing the autocommands
---------
Co-authored-by: Francis Belanger <francis.belanger@ubisoft.com>
* fix: highlight group clear on each attach (nvim-lua#874)
* Update README.md (nvim-lua#875)
Line 102. Placed 'also' before the 'includes'.
"That includes also examples of adding popularly requested plugins." ---> "That also includes examples of adding popularly requested plugins."
* README: add clipboard tool dependency (nvim-lua#886)
Fixes: nvim-lua#884
Neovim requires an external tool for proper system clipboard integration.
Some systems install this already by default:
- on Fedora xsel is already installed by default
- on Windows using the choko install the win32yank is alredy installed
This is not installed by default on ubuntu or debian so adding that
to the dependencies list and to the install instructions snippets.
* Move LspDetach handler near kickstart-lsp-highlight group (nvim-lua#900)
Moved to make sure the kickstart-lsp-highlight group exists when
the LspDetach handler is invoked. The LspDetach handler is used
to clean up any lsp highlights that were enabled by CursorHold
if the LSP is stopped or crashed.
* Add diff to treesitter's ensure_installed languages (nvim-lua#908)
* fix: debug.lua (nvim-lua#918)
* Automatically set detached state as needed. (nvim-lua#925)
* Automatically set detached state as needed.
* Use vim.fn.has instead.
* Fix int vs bool.
* which-key v3 update (nvim-lua#1022)
* which-key v3 update
* remove unneeded brackets from which-key registration
* fix(lazy): added error handling for bootstrap (nvim-lua#1001)
* fix: add required parsers from nvim-treesitter
* Fix neo-tree keymap description (nvim-lua#932)
The lazy.nvim keys parameter does not need the `desc` to
be inside a table in the way that vim.keymap.set() does.
With this fix the keymap description will be properly
shown for example in telescope keymap search
* Remove redundant require (nvim-lua#959)
* Make debug lazy loadable (nvim-lua#978)
* Update README.md | %userprofile%\appdata\local -> %localappdata% (nvim-lua#963)
- Replace `%userprofile%\AppData\Local\nvim\` and `$env:USERPROFILE\AppData\Local\nvim` to `%localappdata%\nvim` and `$env:LOCALAPPDATA\nvim respectfully`
* Make conform.nvim be lazy-loadable again (nvim-lua#977)
The PR that disabled lazy loading (nvim-lua#818) was to fix plugin not being
loaded before write. This sets up lazy to load conform before write.
* Fix comment about mini.ai example (nvim-lua#985)
This example wasn't using `'` so this makes more sense
* Neovim 0.10 updates (nvim-lua#936)
* Neovim 0.10 updates
Provide the buffer for which to enable inlay hints
Co-authored-by: Matt Mirus <matt@mattmirus.com>
* refactor: replace vim.loop with vim.uv
* Upgrade folke/neodev (sunsetting) to folke/lazydev
* Update checkhealth for 0.10 release
---------
Co-authored-by: Matt Mirus <matt@mattmirus.com>
Co-authored-by: mrr11k <me+github@mrr11k.dev>
Co-authored-by: Seb Tomasini <sebt@qgates.com>
* Update lazydev config to fix "Undefined field `fs_stat`" LSP error (nvim-lua#1040)
7513ec8 switched from neodev to
lazydev, but in the process it introduced an LSP error in `init.lua`,
which degrades the desired "first timer" experience of kickstart.nvim.
This commit follows the configuration suggested in
https://github.com/folke/lazydev.nvim/tree/6184ebbbc8045d70077659b7d30c705a588dc62f#-installation
which resolves the LSP error.
* lint: fix lsp warning in `vim.lsp.inlay_hint.is_enabled` (nvim-lua#947)
* fix: lsp warning
* review suggestion
Co-authored-by: Tom Kuson <mail@tjkuson.me>
---------
Co-authored-by: Tom Kuson <mail@tjkuson.me>
* Update comment about the toggle inlay hints keymap (nvim-lua#1041)
* Remove redundant hlsearch option (nvim-lua#1058)
* Modify conform comments to prevent deprecation warning when used (nvim-lua#1057)
* refactor: remove lazydev and luvit-meta as lsp dependencies (nvim-lua#1047)
* performance: defer clipboard because xsel and pbcopy can be slow (nvim-lua#1049)
* Remove treesitter prefer_git option (nvim-lua#1061)
- It's not safe and can corrupt other git repos
- nvim-treesiter maintainers consider `prefer_git` as deprecated and no
longer needed.
See nvim-treesitter PR for details: nvim-treesitter/nvim-treesitter#6959
* Add explicit dependency of nvim-lspconfig on cmp-nvim-lsp (nvim-lua#1042)
* Update README.md (nvim-lua#1091)
* Add note in README about lazy-lock.json (nvim-lua#1090)
* Check for loop or uv for lazypath (nvim-lua#1095)
* refactor: update treesitter and which-key config (nvim-lua#1068)
* Include visual mode in LSP code action keymap (nvim-lua#1060) (nvim-lua#1064)
* Enable silent option for default neo-tree plugin keybinding (nvim-lua#1108)
* Fix: updated the windows installation commands (nvim-lua#1101)
* Update README.md
* Update README.md
* Fix: updated the windows installation commands
* fix: remove deprecated opt for conform.nvim (nvim-lua#1070)
- changed lsp_fallback -> lsp_format
- updated format_on_save function to reflect change above
* cleanup: refactor which-key configuration for cleaner setup (nvim-lua#1102)
- Moved `which-key` configuration from inline `config` to `opts` for better organization.
- Updated the key mappings setup to use `spec` for defining existing key chains.
- Removed deprecated or unnecessary comments and code.
This change aligns with updated `which-key` configuration practices, improving readability and maintainability as recommended by @VlaDexa in nvim-lua#1068.
* Fix the which-key spec issue caused by recent cleanup (nvim-lua#1113)
The recent cleanup accidentally broke the leader key specs
because the spec block was in the wrong level of braces.
That resulted in which-key no longer showing the description
of the <leader> key chains such as [S]earch and others.
* feat: update references of tsserver to ts_ls (nvim-lua#1131)
---------
Co-authored-by: rdvm <git@rvm.dev>
Co-authored-by: Damjan 9000 <damjan.9000@gmail.com>
Co-authored-by: Chris Patti <feoh@feoh.org>
Co-authored-by: Vladislav Grechannik <52157081+VlaDexa@users.noreply.github.com>
Co-authored-by: GameFuzzy <mail@gamefuzzy.dev>
Co-authored-by: Evan Carroll <me@evancarroll.com>
Co-authored-by: Francis Belanger <francis.belanger@gmail.com>
Co-authored-by: Francis Belanger <francis.belanger@ubisoft.com>
Co-authored-by: Adolfo Gante <adolfogante@gmail.com>
Co-authored-by: Richard Macklin <1863540+rmacklin@users.noreply.github.com>
Co-authored-by: Smig <89040888+smiggiddy@users.noreply.github.com>
Co-authored-by: Per Malmberg <PerMalmberg@users.noreply.github.com>
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
Co-authored-by: Tom Kuson <mail@tjkuson.me>
Co-authored-by: Artyom <84637383+MZhuvka@users.noreply.github.com>
Co-authored-by: Matt Mirus <matt@mattmirus.com>
Co-authored-by: mrr11k <me+github@mrr11k.dev>
Co-authored-by: Seb Tomasini <sebt@qgates.com>
Co-authored-by: srdtrk <59252793+srdtrk@users.noreply.github.com>
Co-authored-by: Arvin Verain <arvinverain@proton.me>
Co-authored-by: Brandon Clark <bwclark97@gmail.com>
Co-authored-by: Ihsan Tonuzi <115842560+iton0@users.noreply.github.com>
Co-authored-by: abeldekat <58370433+abeldekat@users.noreply.github.com>
Co-authored-by: jstrot <44594069+jstrot@users.noreply.github.com>
Co-authored-by: theoboldalex <44616505+theoboldalex@users.noreply.github.com>
Co-authored-by: Matt Gallagher <46973220+mattgallagher92@users.noreply.github.com>
Co-authored-by: Michael L. <m@lehenauer.com>
Co-authored-by: Bayram Kazik <48856944+bayramkzk@users.noreply.github.com>
Co-authored-by: Harshit Pant <97608579+pantharshit007@users.noreply.github.com>
Co-authored-by: Nicolás Baquero <88566759+Cheveniko@users.noreply.github.com>1 parent 278672a commit 031284e
File tree
8 files changed
+315
-157
lines changed- lua/kickstart
- plugins
8 files changed
+315
-157
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
27 | 28 | | |
28 | 29 | | |
29 | 30 | | |
30 | | - | |
31 | | - | |
| 31 | + | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
45 | 46 | | |
46 | 47 | | |
47 | 48 | | |
48 | | - | |
49 | | - | |
| 49 | + | |
| 50 | + | |
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
| |||
58 | 59 | | |
59 | 60 | | |
60 | 61 | | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
61 | 66 | | |
62 | 67 | | |
63 | 68 | | |
| |||
76 | 81 | | |
77 | 82 | | |
78 | 83 | | |
79 | | - | |
| 84 | + | |
80 | 85 | | |
81 | 86 | | |
82 | 87 | | |
83 | 88 | | |
84 | 89 | | |
85 | | - | |
| 90 | + | |
86 | 91 | | |
87 | 92 | | |
88 | 93 | | |
| |||
99 | 104 | | |
100 | 105 | | |
101 | 106 | | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | | - | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
139 | | - | |
140 | | - | |
141 | | - | |
142 | | - | |
143 | | - | |
144 | | - | |
| 107 | + | |
| 108 | + | |
145 | 109 | | |
146 | | - | |
147 | | - | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
152 | | - | |
153 | | - | |
154 | | - | |
155 | | - | |
156 | | - | |
157 | | - | |
158 | | - | |
159 | | - | |
160 | | - | |
161 | | - | |
162 | | - | |
163 | | - | |
164 | | - | |
165 | | - | |
166 | 110 | | |
167 | 111 | | |
168 | 112 | | |
| |||
243 | 187 | | |
244 | 188 | | |
245 | 189 | | |
246 | | - | |
| 190 | + | |
247 | 191 | | |
248 | 192 | | |
249 | 193 | | |
| |||
253 | 197 | | |
254 | 198 | | |
255 | 199 | | |
256 | | - | |
| 200 | + | |
257 | 201 | | |
258 | 202 | | |
259 | 203 | | |
260 | 204 | | |
261 | 205 | | |
262 | 206 | | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
267 | 218 | | |
268 | 219 | | |
269 | 220 | | |
270 | 221 | | |
271 | 222 | | |
272 | | - | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
273 | 231 | | |
274 | 232 | | |
275 | 233 | | |
0 commit comments