* 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>
LazyVim is a Neovim setup powered by 💤 lazy.nvim
to make it easy to customize and extend your config.
Rather than having to choose between starting from scratch or using a
pre-made distro, LazyVim offers the best of both worlds - the flexibility
to tweak your config as needed, along with the convenience of a pre-configured setup.
✨ Features
🔥 Transform your Neovim into a full-fledged IDE
💤 Easily customize and extend your config with lazy.nvim
🚀 Blazingly fast
🧹 Sane default settings for options, autocmds, and keymaps
📦 Comes with a wealth of plugins pre-configured and ready to use
Remove the .git folder, so you can add it to your own repo later
rm -rf ~/.config/nvim/.git
Start Neovim!
nvim
Refer to the comments in the files on how to customize LazyVim.
There's a great video created by @elijahmanor with a walkthrough to get started.
📂 File Structure
The files under config will be automatically loaded at the appropriate time,
so you don't need to require those files manually.
LazyVim comes with a set of default config files that will be loaded
before your own. See here
You can add your custom plugin specs under lua/plugins/. All files there
will be automatically loaded by lazy.nvim