summaryrefslogtreecommitdiffstats
path: root/nvim/lua
Commit message (Collapse)AuthorAgeFilesLines
* nvim: Update lockfile and reference to fish through PATH instead of abs locationChristoph Schlosser2025-09-071-1/+1
|
* Remove commented out tinkering configChristoph Schlosser2025-06-131-86/+0
|
* Add hardtime.nvimChristoph Schlosser2025-06-131-0/+8
|
* Update remaining Mason's old address (#1530)Carlos Calla Alarcón2025-05-221-1/+1
|
* don't lazy-load neo-tree so netrw hijacking on startup works (#1489)pynappo2025-05-101-1/+1
|
* Replace vim.opt with vim.o (#1495)Ori Perry2025-05-101-1/+1
| | | | | | | | | | | | * Replace vim.opt with vim.o Because it offers a nicer interface and info on hover. For now leave vim.opt when using the table interface (until vim.o with tables is implemented) * Add type hint for vim.opt.rtp * Add a comment about using vim.opt instead of vim.o
* nvim: Set default shell to user local fishChristoph Schlosser2025-04-251-0/+1
|
* nvim: Set tabs/whitespace optionsChristoph Schlosser2025-04-143-0/+30
|
* feat: switch nvim-cmp for blink.cmp (#1426)Liam Dyer2025-04-091-9/+1
|
* nvim: Remove tokyonight colorscheme and replace it with darculaChristoph Schlosser2025-03-162-2/+10
|
* nvim: Enable custom pluginsChristoph Schlosser2025-03-161-155/+75
|
* nvim: Disable arrow keys in normal modeChristoph Schlosser2025-03-161-17/+37
|
* nvim: Use relative numbersChristoph Schlosser2025-03-161-20/+47
|
* nvim: Add AI pluginsChristoph Schlosser2025-03-161-0/+102
|
* fix (#1319): gitsigns deprecated functions (#1321)Erlan Rangel2025-02-151-2/+2
| | | | | - This commit change two functions that are marked as deprecated now: `gitsigns.stage_hunk` and `gitsigns.toggle_deleted`
* fix(gitsigns): make visual mode descriptions consistent with normal mode (#1266)Scott Swensen2024-12-151-2/+2
|
* Fix nvim-dap not lazy loading (#1216)Anjishnu Banerjee2024-11-201-22/+53
| | | | | | | | | * Fix nvim-dap not lazy loading The keys property had local variables 'dap' and 'dap-ui' that used `require` and prevented all DAP related plugins from lazy-loading. Fixed this by changing keys to a table and substituting the local variables with a lamba function * Make debug keybind descriptions more consistent
* Set breakpoint icons and their highlight colors (#1194)gloomy-lemon-debatable2024-10-301-0/+12
| | | | | | | | | | | | * feat: Set breakpoint icons and their highlight colors * docs: Delete reference URL (written in PR) feat: "Break" and "Stop" arguments of vim.api.nvim_set_hl are changed because they are too common nouns feat: Comment out changes regarding diagnostic symbols so that only those who want to change them can do so --------- Co-authored-by: name <email>
* Disable linting autocmd for readonly buffers (#1202)Éric NICOLAS2024-10-301-1/+6
| | | | | | | | | | | | | | | | | | * Disable linting autocmd for readonly buffers This should avoid linting in buffers outside of the user's control, having in mind especially the handy LSP pop-ups that describe your hovered symbol using markdown. Co-authored-by: Robin Gruyters <2082795+rgruyters@users.noreply.github.com> * Justify guarding try_lint in readonly buffers Co-authored-by: Robin Gruyters <2082795+rgruyters@users.noreply.github.com> --------- Co-authored-by: Robin Gruyters <2082795+rgruyters@users.noreply.github.com>
* Enable silent option for default neo-tree plugin keybinding (#1108)Bayram Kazik2024-08-251-1/+1
|
* Neovim 0.10 updates (#936)Vladislav Grechannik2024-07-211-3/+3
| | | | | | | | | | | | | | | | | | | | * 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>
* Make debug lazy loadable (#978)Vladislav Grechannik2024-07-211-13/+22
|
* Remove redundant require (#959)Tom Kuson2024-07-211-1/+1
|
* Fix neo-tree keymap description (#932)Damjan 90002024-07-211-1/+1
| | | | | | | 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
* Automatically set detached state as needed. (#925)Per Malmberg2024-05-101-1/+7
| | | | | | | | * Automatically set detached state as needed. * Use vim.fn.has instead. * Fix int vs bool.
* fix: debug.lua (#918)Smig2024-05-081-1/+1
|
* Add gitsigns recommended keymaps as an optional plugin (#858)Damjan 90002024-04-171-0/+61
|
* Move plugin examples from README to optional plugin files (#831)Damjan 90002024-04-172-0/+41
| | | | | | * Move autopairs example from README to an optional plugin * Move neo-tree example from README to an optional plugin
* Add nvim-nio as dependency for nvim-dap-ui (#774)José Miguel Sarasola2024-03-181-0/+3
| | | | It's a dependency now
* feat: add linter plugin (#699)Fredrik Averpil2024-03-181-0/+55
|
* fix: checkhealth reported nvim version (#685)Damjan 90002024-03-031-3/+4
|
* rewrite: slimmer, trimmer and more lazy kickstart.nvim (#635)TJ DeVries2024-02-263-74/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | We've removed over 1/3 of the code that was in kickstart previously, and more than doubled the amount of comments explaining every line of code (to the best of my ability). kickstart now properly uses many of the lazy.nvim config and loading idioms, which should be really helpful for people moving both to modular configs, as well as extending the kickstart config in one file. Additional features: - Beautiful ascii art - Added some documentation that explains what is an LSP, what is telescope, etc - There is now a `:checkhealth` for kickstart, which checks some basic information and adds useful information for maintainers (for people cloning the repo). - Improved LSP configuration and tool installation, for easier first time startup - Changed init.lua ordering, so that it moves from simple options to complicated config ``` ------------------------------------------------------------------------------- Language files blank comment code ------------------------------------------------------------------------------- Lua 1 108 404 298 ------------------------------------------------------------------------------- ```
* Added lua/cmp-setup.luaDamjan 90002023-11-031-0/+49
|
* Added lua/lsp-setup.luaDamjan 90002023-11-031-0/+111
|
* Added lua/treesitter-setup.luaDamjan 90002023-11-031-0/+70
|
* Added lua/telescope-setup.luaDamjan 90002023-11-031-0/+36
|
* Added lua/keymaps.luaDamjan 90002023-11-031-0/+28
|
* Added lua/options.luaDamjan 90002023-11-031-0/+42
|
* Added lua/lazy-plugins.luaDamjan 90002023-11-031-0/+173
|
* Added lua/lazy-bootstrap.luaDamjan 90002023-11-031-0/+17
|
* Add descriptions for debugging keybindings.Juan Giordana2023-06-181-10/+11
| | | | | | | Add descriptions for debugging key bindings. Improve formatting by changing double quotes to single quotes in order to keep compatibility with the rest of the kickstart.nvim project.
* Revert "Refactor theme and status line into their own file"Chris Patti2023-06-043-27/+11
| | | | This reverts commit 4dd2f71906c4278356f80736ee7f3faaf3cdb3ca.
* Refactor theme and status line into their own fileChris Patti2023-06-033-11/+27
|
* Added disconnect emoji for nvim-dap-uiKeiwan Jamaly2023-04-261-0/+1
|
* Dapui.toggle is addedSamPosh2023-04-241-1/+3
|
* mason nvim dap 2.0 removed setup_handlers() (#258)Kai Windle2023-04-121-6/+4
|
* feat: move to lazy.nvim package manager and add first plugins (#178)TJ DeVries2023-02-173-0/+164
Closes #175 Closes #177 Closes #173 Closes #169 Closes #161 Closes #144 Closes #138 Fixes #136 Closes #137 Closes #131 Closes #117 Closes #130 Closes #115 Closes #86 Closes #105 Closes #70 Fixes #176 Fixes #174 Fixes #160 Fixes #158