aboutsummaryrefslogtreecommitdiff
path: root/init.lua
AgeCommit message (Collapse)Author
2024-07-28refactor: remove lazydev and luvit-meta as lsp dependencies (#1047)Ihsan Tonuzi
2024-07-28Modify conform comments to prevent deprecation warning when used (#1057)Brandon Clark
2024-07-28Remove redundant hlsearch option (#1058)Arvin Verain
2024-07-22Update comment about the toggle inlay hints keymap (#1041)Richard Macklin
2024-07-21Update lazydev config to fix "Undefined field `fs_stat`" LSP error (#1040)Richard Macklin
7513ec8a7dd579957ce2d9b44e05c1da18d7d0e3 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.
2024-07-21Neovim 0.10 updates (#936)Vladislav Grechannik
* 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>
2024-07-21Fix comment about mini.ai example (#985)Richard Macklin
This example wasn't using `'` so this makes more sense
2024-07-21Make conform.nvim be lazy-loadable again (#977)Vladislav Grechannik
The PR that disabled lazy loading (#818) was to fix plugin not being loaded before write. This sets up lazy to load conform before write.
2024-07-17fix: add required parsers from nvim-treesitterTJ DeVries
2024-07-16fix(lazy): added error handling for bootstrap (#1001)Folke Lemaitre
2024-07-16which-key v3 update (#1022)Vladislav Grechannik
* which-key v3 update * remove unneeded brackets from which-key registration
2024-05-05Add diff to treesitter's ensure_installed languages (#908)Richard Macklin
2024-05-02Move LspDetach handler near kickstart-lsp-highlight group (#900)Damjan 9000
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.
2024-04-22fix: highlight group clear on each attach (#874)Francis Belanger
2024-04-22Fix highlight errors when lsp crash or stop (#864)Francis Belanger
* 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>
2024-04-22Fix deprecation notice of inlay hints (#873)Vladislav Grechannik
2024-04-20Add a commented out example of the classic complete keymaps. Fixes #866 (#868)Damjan 9000
2024-04-19fix: restore Mason config timing for DAP startup (again) (#865)GameFuzzy
2024-04-17Add gitsigns recommended keymaps as an optional plugin (#858)Damjan 9000
2024-04-17Move plugin examples from README to optional plugin files (#831)Damjan 9000
* Move autopairs example from README to an optional plugin * Move neo-tree example from README to an optional plugin
2024-04-17Enable inlay hints for the supporting servers (#843)Vladislav Grechannik
2024-04-17Fix: #847 - add prefer_git to treesitter config (#856)Chris Patti
2024-04-17Comment about nerd font selection. Fixes #853 (#854)Damjan 9000
2024-03-31Don't lazy load conform plugin (#818)Damjan 9000
2024-03-31Add a keymap space-f to format buffer using conform (#817)Damjan 9000
This works also for visual range selection Copied from conform recipe: https://github.com/stevearc/conform.nvim/blob/master/doc/recipes.md
2024-03-27fix #799 (#800)Liu Qisheng
Add `'luadoc'`, to the `ensure_installed` of `nvim-treesitter/nvim-treesitter`
2024-03-18Some suggestions and capitalised a few words (#771)Togglebit
2024-03-18feat: add linter plugin (#699)Fredrik Averpil
2024-03-18assign table to filetype in lua_ls config comment (#770)Shane Crowley
2024-03-15conform: disable autoformat on save for specified filetypes (#694)Damjan 9000
Provide a method to disable autoformat on save lsp fallback for specified filetypes. By default disable for C/C++ as an example, because it does not have a well standardized coding style. Based on conform recipe: https://github.com/stevearc/conform.nvim/blob/master/doc/recipes.md
2024-03-15fix: disable ts indenting for RubyTJ DeVries
Tree-sitter indenting for ruby is pretty terrible. But the fix requires a few steps, so showed those and documented how you could do that for other languages as well (with the tricky part being the additional_vim_regex_highlighting trick)
2024-03-15doc: add note about advanced luasnip featuresTJ DeVries
2024-03-15Move friendly snippets to dependencies of LuaSnip (#759)Vladislav Grechannik
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2024-03-15Add <C-b>/<C-f> cmp mapping to scroll cmp docs (#750)Rafael Zasas
2024-03-15doc: add info about timeoutlen (#691)TLW
Add separate comment for `timeoutlen` option `timeoutlen` option was under unrelated comment with `updatetime` option.
2024-03-12Revert "Use `cmp-nvim-lua` as `nvim-cmp` source for neovim Lua API (#696)" ↵Chris Patti
(#755) This reverts commit d8a1dbc4b40fc018f254be3f060061d90ad35185.
2024-03-12Use `cmp-nvim-lua` as `nvim-cmp` source for neovim Lua API (#696)James Karefylakis
* Use cmp-nvim-lua as nvim-cmp source for neovim Lua API * Move the dependency to a more suitable place
2024-03-12Added folke/neodev.nvim for proper nvim api completion and annotation (#754)Damjan 9000
Fixes nvim-lua/kickstart.nvim#692 `neodev` configures Lua LSP for your Neovim config, runtime and plugins used for completion, annotations and signatures of Neovim apis With neodev, there's no more need to manually set lua_ls workspace settings which don't seem to work properly anyway as currently nvim api completion does not work.
2024-03-11chore: rename <C-T> to <C-t> for consistency (#719)Chiller Dragon
2024-03-11feat: allow treesitter defaults to be overwritten from custom directory (#732)Ryan Baumgardner
2024-03-09use init for colorscheme (#715)name.tar.xz
2024-03-06Make the Nerd Font an optional requirement (#716)Damjan 9000
2024-03-05Add more detail to colorscheme comment (#713)Ryan Winchester
2024-03-04Change statusline location to LINE:COLUMN (#689)Damjan 9000
2024-03-02feat: use VimEnter event instead of VeryLazy (#673)Taulant Aliraj
2024-03-01chore: fix typos (#666)Nhan Luu
2024-02-29feat: enable lua lsp snipppets (#660)Anton Kastritskii
2024-02-29fixup: updated some style stuffTJ DeVries
2024-02-28Change mini.statusline location format to LINE:COLUMN (#659)Damjan 9000
Default mini.statusline location format is: 'cursor line | total lines │ cursor column | total columns'
2024-02-27add plugin specs docstring, remove lazy.nvim configuration (empty) table (#652)brxxlstxrs