Commit graph

1329 commits

Author SHA1 Message Date
Anjo Tadena
dc5ada0470 Update lazyvim 2025-01-03 23:10:24 +08:00
Anjo Tadena
ddbcc31c62
Sync from upstream to main (#2)
* fix(dot): treesitter for hypr was renamed to hyprlang

* feat(autocmds): dont use conceal for json files

* chore(build): auto-generate vimdoc

* feat(lsp): add diagnostic signs to lsp options (#2192)

Co-authored-by: Gary Murray <gamurray@fanatics.com>

* feat(test): Add <leader>tl to neotest.run_last() (#1968)

* feat(gitsigns): update gitsigns.nvim preview command (#2178)

* chores(format.lua): Fix typo

* Change gitsigns.nvim hunk preview shortcut

Change `preview_hunk` to recently added `preview_hunk_inline` command

* feat(keymaps): add function to toggle between light/dark backgrounds (#2088)

* fix(eslint): correct working directories name (#2071)

* feat(neo-tree): Adds copy file name command to Neo-Tree with 'Y' binding (#2137)

Co-authored-by: Ricardo Rebelo <ricardo.rebelo@siemens.com>

* chore(main): release 10.9.0 (#2391)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: fixup for #2137

* chore(main): release 10.9.1 (#2399)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* docs: typo in init.lua (#2365)

* docs(README-DE): remove .txt extension (#2321)

Probably some windows editor that added this automatically + known extensions hidden.

* fix(autocmds): avoid checktime when buftype=nofile (#2270)

It triggered an 'E11: Invalid in command-line window; <CR> executes,
CTRL-C quits' error when Neovim was in Command Line window and
FocusGained.

* fix(typescript): don't hardcode values in lua table (#2254)

* fix(typescript): don't hardcode values in lua table

When a user changes `vim.opt.shiftwidth` with some auto-command, it's
not taken into account. Make `opts` a function, so that values get
evaluated when `lspconfig` loads instead.

* fix(typescript): remove format settings entirely

* fix(typescript): add back comment and Lua annotations

* fix(typescript): bring back function call completion snippets

* fix(options): change default conceal level to 2 (#2053)

3 hides all concealed text, even if there are replacement chars defined

e.g. : for Markdown, 3 hides list item markers, dots for asterisk lists
and em-dashes for dash lists

If replacements are defined as defaults in a plugin, the "Laziest™"
config would seem to be displaying them.

Level 1 only seems useful when alignment really matters.

* feat(toggle): use `vim.diagnostic.is_disabled` when available (#2217)

* feat(toggle-diagnostics): change logic based on `vim.diagnostic.is_disabled`

After discussion in #2215, I thought maybe it would be beneficial if we
could change the logic of the `toggle-diagnostics` function based on if
the user has disabled diagnostics in his own configuration.

* feat(toggle-diagnostics): revert to `enable` instead of `status`

* fix(toggle): use vim.diagnostics enabled state when possible

---------

Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>

* fix(neo-tree): better copy file name with `Y`

* fix(hyprlang): use lazyvim way to install (#2404)

* chore(build): auto-generate vimdoc

* fix(rust): avoid resetting cmp group_index to 1 (#2332)

For example, 'buffer' source by default has group_index = 2 [1], however
if we take all the sources plus crates and run them through
cmp.config.sources() again, since it's a one-dimensional list, all
group_indexes will be reset to 1.

[1] 879e29504d/lua/lazyvim/plugins/coding.lua (L74-L80)

* feat: added `LazyHealth` that loads all plugins and runs `:checkhealth`

* feat(snippets): added extra to use native snippets instead of LuaSnip.

* feat(telescope): add <leader>fg for finding files using git-files (#2353)

I found this to be more useful than the current <leader>ff and <leader>fF

* fix(autocmds): apply conceal level change to local buffer options (#2409)

* chore(build): auto-generate vimdoc

* chore(main): release 10.10.0 (#2400)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore(build): auto-generate vimdoc

* fix(dot): remove hyprlang plugin (#2623)

* chore(build): auto-generate vimdoc

* fix(neo-tree): Add description to "Y" in Neo-Tree (#2642)

It copies the path of the file/directory

* fix(autocmds): nvim already binds q to close for man-files (#2594)

* fix(options): don't lower timeoutlen when in VS Code (#2568)

Avoid lowering timeoutlen when running in VS Code, to avoid
unwanted timeouts from key mappings.

The lower value of 300ms (down from Neovim's default of 1000ms)
works great outside of VS Code, where it helps trigger the which-key UI
quickly, and where which-key prevents timeouts from occuring.

But in VS Code (where which-key isn't applicable), the lower value
makes it difficult to perform some key mappings in time,
such as `]p`, which requires shifting hand position.

* fix(yanky): properly disable sqlite.lua on Windows (#2543)

When directly modifying its `enabled` property, the plugin will remain
disabled even if required by another plugin.

* feat(hipatterns): add shorthand hex color support (#2562)

* feat(lang) replace rust-tools.nvim with rustacean.nvim - fixes #2113 (#2198)

* feat(lang) - move to rustacean.nvim, fixes #2113

* update rustacean plugin

* PR comment for lsp settings

* fix(telescope): dont use git_files when .ignore or .rgignore file is present

* feat(lang): add ansible support (#1218)

* feat(treesitter): add xml to `ensure_installed` (#1962)

* chore(treesitter.lua): fix typo (#2026)

* fix typo

* fix typo

* fix(telescope): anonymous keymap (#1879)

* fix(telescope): anonymous keymap

* fix(telescope): add desc

* fix(telescope): function name

* fix(telescope): update description

* fix(telescope): diagnostic disable

* feat(lang): add Haskell config (#2052)

* feat(util) create gitui extension (#2238)

* feat(symbols-outline): use outline.nvim instead of symbols-outline.nvim (#2535)

* feat(extras): Add scala support using nvim-metals (#1347)

* Add scala support using nvim-metals

nvim-metals:
https://github.com/scalameta/nvim-metals

minimal example configuration from their documentation:
https://github.com/scalameta/nvim-metals/discussions/39

* add treesitter syntax highlighting

* feat(lang): add support for helm chart templates (#2273)

* feat(lang): add support for helm chart templates

* fix(helm): stop yamlls and disable autostart

* fix(helm): stop yaml & docker compose lsp on helm file types

Revert disabling `autostart` since that kills the LSP globally even when
opening a standard yaml file, like GitHub Workflow file.

* fix(helm): remove docker compose lsp overrides

Since docker compose LSP does not seem to be triggered or started by
opening *.yaml helm files, the config overrides were removed to simplify
Helm config.

* fix(helm): ensure mason installs helm lsp

* feat(omnisharp): add `nvim-dap` configuration (#2532)

* feat(omnisharp): add `nvim-dap` configuration

* chore(omnisharp): add `netcoredbg` to `ensure_installed`

* chore: simplify get `netcoredbg` path

* fix(util.ui.fg): Add `link=false` to show effective definition (#2542)

Fixes #2540 by showing the effective definition instead of the linked
group name.

* feat(extras): Enable project-specific plugin specs using local .lazy.lua (#2115)

* feat(extras): Enable project-specific plugin specs using .lazy.lua

* added a warning when extra lazyrc is not the last plugin spec

* feat(lang): add telescope terraform integrations (#2235)

* feat(lang): add telescope terraform integrations

Closes #2234

Add telescope integrations for:
- https://github.com/ANGkeith/telescope-terraform-doc.nvim
- https://github.com/cappyzawa/telescope-terraform.nvim

* fix(lang): remove event from terraform telescope extensions

* style: formatting

* feat(autocmds): added support for copy/paste through ssh. Needs Neovim >= 0.10.0

* feat(extras): add harpoon2 (#2455)

* feat(extras): add harpoon2

* Update lua/lazyvim/plugins/extras/editor/harpoon2.lua

Co-authored-by: Iordanis Petkakis <dpetka2001@gmail.com>

* chore: formatting

---------

Co-authored-by: Iordanis Petkakis <dpetka2001@gmail.com>

* feat(ui): dashboard files searches git files if in git repo (#2240)

just like `<leader>ff` keymap for telescope

* fix(lang): Change `rustacean` keymaps to `vim.keymap.set` instead of `which-key` (#2660)

Based on this [comment](https://github.com/LazyVim/LazyVim/pull/2198#pullrequestreview-1873658780).

* fix(ansible): incorrect key spec

* feat(lsp): added native codelens support. Enable in lsp settings. (disabled by default). Fixes #2656

* feat(java): allow opts for setup_dap_main_class_configs() (#2581)

[1] 382b9f6258/doc/jdtls.txt (L206-L210)

* fix(go): adding opts recursive_run (#2520)

Adding opts recursive_run to fix the error 'no Go files in /path/project.' This issue is caused by a recent change in the 'nvim-neotest/neotest-go' project, which now [defaults to non-recursive behavior](https://github.com/nvim-neotest/neotest-go/pull/72)

* fix(util): clear buffer root cache when cwd change (#2502)

* chore(main): release 10.11.0 (#2659)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(extras): show rename of symbols-outline => outline

* chore(main): release 10.11.1 (#2664)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* feat(lang): replace rust-tools.nvim with rustacean.nvim #2198

dummy commit to trigger changelog.
original commit message was not correct and didnt get picked up by the changelog

* fix(extras): set correct priority for outline extra. Fixes #2666

* chore(main): release 10.12.0 (#2667)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(haskell): Make Haskell-snippets lazy load for performance (#2676)

* fix(haskell): add filetype to haskell-snippets for lazy load

* format haskell.lua

---------

Co-authored-by: Uthman Mohamed <83053931+1239uth@users.noreply.github.com>

* chore(build): auto-generate vimdoc

* fix(hi-patterns): correct regex for shorthand hex colors. See ##2562

* fix(extras): automatically rename extra symbols-outline => outline. Fixes #2675

* fix(extras): prevent duplicate extra imports

* chore(main): release 10.12.1 (#2677)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(terraform-extra): Drop unnecessary commentstring config for terraform (#2680)

* fix(terraform-extra): Drop unnecessary commentstring config for terraform

The commentstring for terraform and hcl files is now handled by nvim-ts-context-commentstring:

JoosepAlviste/nvim-ts-context-commentstring#94

* Fixed terraform.lua issues. I'm bad.

* chore(build): auto-generate vimdoc

* feat(lualine): add more hl options to pretty_path (#2687)

* feat(lualine): add more hl options to pretty_path

Adds two additional options to pretty_path: filename_hl and dirpath_hl.

This allows users to customize the highlight group of both the directory
component of the path name and the filenname independently. modified_hl
is still used when the buffer has been modified.

Thanks to dpetka2001 (Iordanis Petkakis) for the changes to the format
function.

* feat: cleanup

---------

Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>

* chore(build): auto-generate vimdoc

* fix(options): dont set clipboard in an SSH session, so that OSC52 can be enabled (when supported)

* chore(build): auto-generate vimdoc

* feat(git): add <leader>gf for lazygit commit history on current file (#2728)

* Add <leader>gf for lazygit commit history on current file

* Change root dir to git root using git command

* refactor: cleanup

---------

Co-authored-by: Uthman Mohamed <83053931+1239uth@users.noreply.github.com>
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>

* chore(build): auto-generate vimdoc

* fix(rust): don't overwrite `vim.g.rustaceanvim` if it is defined (#2720)

* fix(conform): make `lsp_fallback` option user configurable (#2616)

* chore(build): auto-generate vimdoc

* fix(markdown): disable headlines.nvim in insert mode. Fixes #2717

* fix(markdown): disable headlines.nvim bullets for now

* fix(mini.files): description for `g.` keybinding in mini.files (#2693)

If you press `g` in a mini.files menu, the `.` key shows up but doesn't have a description. This adds a desc attribute to the binding so the menu shows a correct description.

* fix(which-key): add group description for folds (#2496)

Signed-off-by: Jeff Davis <mr.jefedavis@gmail.com>

* chore(main): release 10.13.0 (#2684)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(git): use compatible function for windows and linux (#2740)

* chore(build): auto-generate vimdoc

* fix(lazygit): make sure we start lazygit in a valid git root

* chore(build): auto-generate vimdoc

* fix(neotest): add required nvim-nio to test and dap extra (neotest and nvim-dap-ui respectively) (#2763)

* Adding required nvim-nio to neotest in test-core

neotest now requires nvim-neotest/nvim-nio to be
installed as per BREAKING CHANGE: https://github.com/nvim-neotest/neotest/pull/337

* Adding nvim-nio as dependency

nvim-dap-ui now requires  nvim-neotest/nvim-nio as a dependency as of recent changes

* chore(build): auto-generate vimdoc

* fix(extras): accept symlinks in User `extras` directory (#2745)

* feat(lualine): add `modified_sign` to `pretty_path` (#2754)

Closes #2752

I left the initial text blank on purpose, so that it doesn't change
anything stylistically and let the user decide what he wants to add
in his personal configuration for `lualine` spec.

* fix(format): format injected langs does not wait 300ms (#2737)

* feat(mini.ai): add more objects d,e,g,u,U (#2769)

* chore(main): release 10.14.0 (#2741)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(lsp): dont auto install disabled lsp servers

* feat(python): added option to configure basedpyright as lsp. Check the python extra docs. Fixes #2787

* chore(build): auto-generate vimdoc

* chore(main): release 10.15.0 (#2790)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(util.telescope): make `show_untracked` configurable (#2789)

* feat: added LazyVim global. Will refactor specs later to use that

* fix(python): basedpyright is now supported by mason-lspconfig

* chore(build): auto-generate vimdoc

* fix(format): Don't leak bufnr into opts tables (#2794)

* chore(build): auto-generate vimdoc

* feat: use `vim.uv` everywhere instead of `vim.loop`

* feat: use LazyVim everywhere instead of `require("lazyvim.util")`

* feat(lazyterm): optional shell setup, mainly for pwsh. Fixes #2151

* fix(java): dont error when not using cmp. Fixes #2038

* feat(telescope-fzf-native): added support for building with cmake. Fixes #2132

* fix(cmake): lazy load cmake-tools. Fixes #2767

* fix: add shim for vim.uv just in case someone upgrades lazyvim before lazy

* chore(main): release 10.16.0 (#2791)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* feat(options): Disable foldtext for nightly (#2447)

* chores(format.lua): Fix typo

* Change gitsigns.nvim hunk preview shortcut

Change `preview_hunk` to recently added `preview_hunk_inline` command

* feat(options): remove redundant commented line

* feat(options): use native folding

see https://github.com/neovim/neovim/pull/20750

* feat(neo-tree): add mapping "O" to open with system default (#2758)

* feat(neo-tree): add mapping "O" to open with system default

* feat(neo-tree): add OS checks for system default open commands

* Use `vim.ui.open` if exists

* update OS checks

* Just use vim.ui.open or throw error if doesn't exist

* Make "O" undefined mapping if vim.ui.open isn't available

* fix: use lazy's util.open instead

---------

Co-authored-by: Uthman Mohamed <83053931+1239uth@users.noreply.github.com>
Co-authored-by: saeedahsan <ahsan02@gmail.com>
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>

* chore(build): auto-generate vimdoc

* feat(python): allow configuring other python lsp servers than pyright, basedpyright

* chore(build): auto-generate vimdoc

* feat(util): added util function to get a fg/bg color from the active colorscheme

* feat(lazygit): lazygit now automatically uses colors from your Neovim colorscheme

Disable by setting `vim.g.lazygit_theme = false` in your `options.lua`

* chore(main): release 10.17.0 (#2805)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(lazygit): allow overriding default terminal options

* chore(main): release 10.17.1 (#2827)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(lazygit): dont error when setting ansi color fails. Fixes #2829

* chore(main): release 10.17.2 (#2831)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* perf(notify): disable animation notifications. too big impact on performance for too little benefit

To keep using animations, you can set stages = fade_in_slide_out for the
nvim-notify plugin

* chore(main): release 10.17.3 (#2833)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* feat(lazygit): configure lazygit nvim-remote as editor and enable nerdfont icons

can be disabled with `vim.g.lazygit_config = false`

* fix(terminal): dont use backdrop for edgy terminal windows

* feat(extras): add dial extra (#2798)

* feat: add dial extra

* refactor: removed print statements

* fix(extras): early return for dial extra

* refactor: dials_by_ft like conform, nvim-lint. Simplified buffer specific groups

---------

Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>

* chore(main): release 10.18.0 (#2834)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* refactor: use `LazyVim.is_win()`

* fix(autocmds): auto create directory on windows for uris. Fixes #2442

* fix(keymaps): update all keymap descriptions to be Title Case (#2844)

* chore(build): auto-generate vimdoc

* fix(lazygit): error handling for getting lazygit's config path

* fix(lazygit): use `Visual` instead of `CursorLine` for selected line. Fixes #2846

* feat(lazygit): allow customizing the lazygit theme. Check the code to change the hl group mapping. Fixes #2846

* fix(python-semshi): better highlights (#2839)

* chore(main): release 10.19.0 (#2835)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(config): type filter was broken for telescope symbols

* fix(nvim-lint): don't duplicate linters. Fixes #2852

* feat(cmp): added option `auto_brackets` that adds brackets to functions/methods in configured filetypes

* feat(python): enable auto_brackets for python, since pyright and basedpyright dont support this natively

* chore(build): auto-generate vimdoc

* feat(extras): added extra for the `trouble.nvim` v3 beta

* fix(trouble): show message if use hasnt updated with Lazy yet after enabling the extra

* fix(statuscolumn): right align signs when virtnum > 0

* feat(extras): added extra for mini.diff

* feat(extras): use mini.move instead of native move (#2865)

* chore(main): release 10.20.0 (#2849)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(trouble-v3): use the filtered symbols list for lualine

* chore(main): release 10.20.1 (#2869)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(mini.move): default mini.move setup already maps the correct keys

* feat(trouble): added `<leader>cS` to open a trouble list of all references / definitions / ... of the item under the cursor

* feat(trouble): enabled edgy

* chore(build): auto-generate vimdoc

* fix(tex): don't override conceallevel for tex. Not sure why that was added

* chore(main): release 10.21.0 (#2870)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(native_snippets): don't try to enable native snippets on Neovim < 0.10.0 and show warning

* fix: merge conflict

* fix(lsp): dont define diagnostics signs on >= 0.10.0

* fix(lsp): better support for diagnostics icons on Neovim nightly/stable

* chore(main): release 10.21.1 (#2873)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(harpoon): optimizes harpoon keys (#2877)

* feat(dot): add bashls and shellcheck (#2879)

---------

Signed-off-by: Jeff Davis <mr.jefedavis@gmail.com>
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Gary Murray <garymjr@gmail.com>
Co-authored-by: Gary Murray <gamurray@fanatics.com>
Co-authored-by: Samuel Abreu <sdepaula@gmail.com>
Co-authored-by: Sergey Kochetkov <skoch13@pm.me>
Co-authored-by: NickSager <121263610+NickSager@users.noreply.github.com>
Co-authored-by: Nick Hester <nickhstr@gmail.com>
Co-authored-by: pr3c0g <precogster@gmail.com>
Co-authored-by: Ricardo Rebelo <ricardo.rebelo@siemens.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Pablo <52180403+pablos123@users.noreply.github.com>
Co-authored-by: tippfehlr <tippfehlr@tippfehlr.eu>
Co-authored-by: Frederick Zhang <frederick888@tsundere.moe>
Co-authored-by: Iordanis Petkakis <dpetka2001@gmail.com>
Co-authored-by: Adrian Wilkins <adrian.wilkins@gmail.com>
Co-authored-by: Binh Duc Tran <binhtran432k@gmail.com>
Co-authored-by: Yi <yzhuang@users.noreply.github.com>
Co-authored-by: Michael Olson <48652773+m0lson84@users.noreply.github.com>
Co-authored-by: Luckas <luckasranarison@gmail.com>
Co-authored-by: Aman9das <39594914+Aman9das@users.noreply.github.com>
Co-authored-by: Dennis Eriksen <796800+dennisse@users.noreply.github.com>
Co-authored-by: mbhutton <mbhutton@gmail.com>
Co-authored-by: MoetaYuko <loli@yuko.moe>
Co-authored-by: Daniel Mata <100956688+matadaniel@users.noreply.github.com>
Co-authored-by: Andreas Gerlach <appelgriebsch@users.noreply.github.com>
Co-authored-by: Jakub Kozłowicz <ja.kozlowicz@gmail.com>
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
Co-authored-by: Frederik Buchlák <30214087+fbuchlak@users.noreply.github.com>
Co-authored-by: André Freitas <andrecfreitas58@gmail.com>
Co-authored-by: Marc Jakobi <mrcjkb89@outlook.com>
Co-authored-by: Alafate <alafate.abulimiti@gmail.com>
Co-authored-by: Christian Kleinbölting <seakayone@users.noreply.github.com>
Co-authored-by: Peter Benjamin <petermbenjamin@gmail.com>
Co-authored-by: Võ Quang Chiến <87252943+2giosangmitom@users.noreply.github.com>
Co-authored-by: abeldekat <58370433+abeldekat@users.noreply.github.com>
Co-authored-by: Nybkox <nybkox@gmail.com>
Co-authored-by: Pedro Cattori <pcattori@gmail.com>
Co-authored-by: Wellington Lopes Souza <wellington.lopess@mercadolivre.com>
Co-authored-by: Tang-Tang Zhou <tangtang2995@gmail.com>
Co-authored-by: Uthman Mohamed <83053931+uthmanmoh@users.noreply.github.com>
Co-authored-by: Uthman Mohamed <83053931+1239uth@users.noreply.github.com>
Co-authored-by: Adam Stracener <6558867+NeckBeardPrince@users.noreply.github.com>
Co-authored-by: Pete Kazmier <pete@kazmier.com>
Co-authored-by: Marc Jakobi <marc.jakobi@tiko.energy>
Co-authored-by: Dusty Phillips <86920+dusty-phillips@users.noreply.github.com>
Co-authored-by: Jeff Davis <mr.jefedavis@gmail.com>
Co-authored-by: craempler <74294267+msMatix@users.noreply.github.com>
Co-authored-by: Stefan Krüger <stefan@standa.de>
Co-authored-by: Phúc H. Lê Khắc <phuc.lkh@gmail.com>
Co-authored-by: Alexander Arvidsson <alexander@arvidson.nu>
Co-authored-by: saeedahsan <ahsan02@gmail.com>
Co-authored-by: Feliche-Demian Netliukh <51330172+Demianeen@users.noreply.github.com>
Co-authored-by: Kevin Traver <kevintraver@kevintraver.com>
Co-authored-by: ammon134 <113684938+ammon134@users.noreply.github.com>
Co-authored-by: Rubin Bhandari <roobin.bhandari@gmail.com>
2024-04-09 08:10:35 +08:00
Anjo Tadena
7dda2e98e3 Fix plugin errors on formatting 2024-01-14 22:58:00 +08:00
Anjo Tadena
85810953c7 Update configuration 2024-01-14 22:16:50 +08:00
Anjo Tadena
96735a3988
Merge branch 'LazyVim:main' into main 2024-01-13 10:22:59 +08:00
github-actions[bot]
879e29504d
chore(main): release 10.8.2 (#2097)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-30 21:27:02 +01:00
Folke Lemaitre
8baf9b5459
fix(lsp): fix inlay hints for older nightlies. See #2007 2023-11-30 21:24:07 +01:00
github-actions[bot]
6ac331b588
chore(main): release 10.8.1 (#2095)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-30 20:20:39 +01:00
Folke Lemaitre
e229988a98
fix(lsp): inlay hints on stable. See #2007 2023-11-30 20:17:07 +01:00
Folke Lemaitre
11a8a6bea7
fix(ui): signcolumn signs on nightly. Fixes #2039 2023-11-30 20:17:07 +01:00
github-actions[bot]
4ebda08d49 chore(build): auto-generate vimdoc 2023-11-30 18:54:19 +00:00
Gary Murray
6853b785d9
fix(lsp): detect if using nvim-0.10 and use new inlay_hint.enable method (#2007)
* Detect if using nvim 0.10 and use new inlay_hint.enable method

* Add lsp util for inlay-hints and update keymap

* Remove the need to check vim version

* Support older nightly builds

* Move inlay_hint toggle in Util.toggle

---------

Co-authored-by: Gary Murray <gamurray@fanatics.com>
2023-11-30 19:53:40 +01:00
github-actions[bot]
68ff818a5b
chore(main): release 10.8.0 (#1874)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-04 11:12:37 +01:00
Jorge Villalobos
4312e5e283
feat(catppuccin): enable more integrations (#1922) 2023-11-04 11:09:01 +01:00
github-actions[bot]
db31b4073b chore(build): auto-generate vimdoc 2023-11-04 09:15:11 +00:00
Folke Lemaitre
3986169823
fix(spectre): don't build nvim-spectre 2023-11-04 10:14:36 +01:00
github-actions[bot]
e5babf289c chore(build): auto-generate vimdoc 2023-10-28 14:39:26 +00:00
Folke Lemaitre
b32b4fd581
fix(extras): dont show extras that give errors (user's extras). Fixes #1895 2023-10-28 16:38:43 +02:00
github-actions[bot]
4b758c40c0 chore(build): auto-generate vimdoc 2023-10-27 16:35:14 +00:00
Folke Lemaitre
e01ad513aa
fix(sessions): added folds to sessions 2023-10-27 18:34:33 +02:00
github-actions[bot]
7831fc94ca chore(build): auto-generate vimdoc 2023-10-26 05:39:38 +00:00
Folke Lemaitre
4558407574
fix(plugin): LazyFile now properly deals with deleted buffers. Fixes #1877 2023-10-26 07:38:53 +02:00
André Freitas
09eafc60ef
fix(mini.indentscope): remove duplicated filetype (#1871) 2023-10-25 20:00:01 +02:00
github-actions[bot]
9a6b0f8928
chore(main): release 10.7.1 (#1870)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-25 17:52:35 +02:00
Folke Lemaitre
f589154268
fix(catppuccin): trouble integration. Fixes #1872 2023-10-25 17:23:37 +02:00
Folke Lemaitre
60e5707013
fix(util): pcall deletion of lazy_file augroup. See #1863 2023-10-25 15:54:35 +02:00
github-actions[bot]
028f69c03c
chore(main): release 10.7.0 (#1869)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-25 15:51:56 +02:00
58ddf405e0
fix(lang): add cmakelint to ensure installed list (#1826)
1. mason/cmakelang install bin/cmake-lint
2. nvim-lint only recognize bin/cmakelint
3. mason/cmakelint install bin/cmakelint
so we need mason/cmakelint installed to using nvim-lint to perform formatting
2023-10-25 15:50:02 +02:00
Jorge Villalobos
9e1f835223
feat(nvim): extend j/k enhancements to up/down arrows (#1833) 2023-10-25 15:48:45 +02:00
Amaan Qureshi
37953585bb
fix(extras.python-semshi): improve highlights (#1845) 2023-10-25 15:47:07 +02:00
金雄镕
61fae7d23f
fix: fix jdtls not spwaning in windows (#1864) 2023-10-25 15:46:39 +02:00
github-actions[bot]
6dfeeb8322
chore(main): release 10.6.0 (#1842)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-25 15:44:48 +02:00
Folke Lemaitre
b651560ad0
perf(markdown): prevent headlines.nvim slowing down initial rendering with nvim README.md 2023-10-25 15:40:57 +02:00
Folke Lemaitre
1e1b68d633
fix(treesitter): make treesitter queries available at startup. See #1816 Fixes #1858 2023-10-25 15:40:25 +02:00
Folke Lemaitre
eab464d52d
fix(markdown): create default numbered Headline groups for colorschemes that dont support them. Fixes #1822 2023-10-25 14:23:44 +02:00
github-actions[bot]
c400cf0014 chore(build): auto-generate vimdoc 2023-10-25 12:06:15 +00:00
Folke Lemaitre
a5c9708736
perf(ui): wrap treesitter.foldexpr and cache get_parser during a event loop tick. Fixes #1846 2023-10-25 14:05:32 +02:00
Folke Lemaitre
99598ef7c7
feat(telescope): sort buffers with lastused and mru 2023-10-25 14:05:32 +02:00
Folke Lemaitre
ef5ec9a3bf
style: added trouble ft for the next gen trouble 2023-10-25 14:05:32 +02:00
github-actions[bot]
e7130c8250 chore(build): auto-generate vimdoc 2023-10-22 12:44:41 +00:00
Evgeni Chasnovski
e55ab411b4
fix(mini.hipatterns): use extmark_opts instead of soft deprecated priority (#1841) 2023-10-22 14:44:08 +02:00
github-actions[bot]
fa3170d422 chore(build): auto-generate vimdoc 2023-10-20 11:27:50 +00:00
abeldekat
786a061eaa
style(dashboard): remove unnecessary brackets from keys, including extras (#1809)
* style(dashboard): remove unnecessary brackets from keys, including the p key from the project extras

* review Folke

---------

Co-authored-by: abeldekat <abel@nomail.com>
2023-10-20 13:27:10 +02:00
github-actions[bot]
0bb628053b
chore(main): release 10.5.0 (#1808)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-19 20:16:16 +02:00
github-actions[bot]
e996eed750
chore(main): release 10.5.0 (#1800)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-19 20:14:17 +02:00
Aron Griffis
8df44b3bb5
feat(typescript): added remove unused imports (#1794) 2023-10-19 20:12:48 +02:00
Folke Lemaitre
82da2440e4
fix(nvim-ts-autotag): make it actually work :) 2023-10-19 19:54:36 +02:00
André Freitas
fad3777296
fix(tabnine): run :CmpTabnineHub automatically on build (#1788) 2023-10-19 07:54:19 +02:00
Folke Lemaitre
ea3155aef6
fix(conform): allow overriding all conform format options. Fixes #1790 2023-10-19 07:52:47 +02:00
Folke Lemaitre
98b51a608c
style(dashboard): make layout exactly the same as before 2023-10-19 07:52:47 +02:00