Skip to content

Conversation

dam9000
Copy link
Contributor

@dam9000 dam9000 commented Apr 17, 2025

Fixes #1476

@feoh feoh merged commit f5a9f9c into nvim-lua:master May 11, 2025
1 check passed
arsxhy pushed a commit to arsxhy/arsKickstart.nvim that referenced this pull request May 11, 2025
dribic added a commit to dribic/nvim-files that referenced this pull request May 11, 2025
@dam9000 dam9000 deleted the pr-fd-find branch May 12, 2025 10:20
kumiau pushed a commit to kumiau/kickstart.nvim that referenced this pull request May 12, 2025
viliusradz pushed a commit to viliusradz/kickstart.nvim that referenced this pull request May 14, 2025
CamilleMo pushed a commit to CamilleMo/kickstart.nvim that referenced this pull request May 16, 2025
DivyanshDev05 pushed a commit to DivyanshDev05/kickstart.nvim that referenced this pull request May 17, 2025
kuroikyu pushed a commit to kuroikyu/kickstart.nvim that referenced this pull request May 18, 2025
mhamza15 added a commit to mhamza15/kickstart.nvim that referenced this pull request May 19, 2025
* Added lua/lazy-bootstrap.lua

* Added lua/lazy-plugins.lua

* Added lua/options.lua

* Added lua/keymaps.lua

* Added lua/telescope-setup.lua

* Added lua/treesitter-setup.lua

* Added lua/lsp-setup.lua

* Added lua/cmp-setup.lua

* Update README.md - remove single-file

* Update README.md - kickstart-modular fork

* init.lua: update section comments to match upstream

* Run stylua on init.lua

* Minor changes to README to reflect the modular repo (nvim-lua#3)

* Update README to reflect modular organization

- Change install links to this repo instead of nvim-lua/kickstart.nvim

- Change “Recommended Steps” repo link to reflect kickstart-modular.nvim.git

- Change FAQ re: multiple files to reflect that we are in the modular repo, not the single file repo.

* README.md: removed some trailing spaces

* fix: incorrect reference to init.lua in README.md

* README.md: minor update to the modular fork note

* chore(docs): Update README.md (nvim-lua#1344)

Neovim has renamed the "linux64" binary to "linux-x86_64".

* docs: clarify using opts = {} vs config = function() ... require('plu… (nvim-lua#1316)

* docs: clarify using opts = {} vs config = function() ... require('plugin').setup({}) .. end

The current documentation mentioning that using "require" is equivalent to using "opts" without detailing the use in the "config = function()" block seems inaccurate.
Lower in the configuration the "config = function()" block is used without clarifying why it needed and what it does.
This clarification may help new users understand the difference between the two, or how and where to place the "require" statement.

* Update init.lua

* remove whitespace

* fix (nvim-lua#1319): gitsigns deprecated functions (nvim-lua#1321)

- This commit change two functions that are marked as deprecated now:
`gitsigns.stage_hunk` and `gitsigns.toggle_deleted`

* Add a blurb about installing missing emoji on Ubuntu

Right next to the nerdfonts blurb as requested.

* fix: arguments for the `vim.lsp.Client.supports_method` method (nvim-lua#1356)

* feat(diagnostic): add diagnostic config (nvim-lua#1335)

Co-authored-by: gelocraft <[email protected]>

* perf: load tokyonight.nvim in the intended way (nvim-lua#1360)

Fixes nvim-lua#1357

* feat: add basic function signature help (nvim-lua#1358)

* feat: add basic function signature help

* Update init.lua

Co-authored-by: makeworld <[email protected]>

---------

Co-authored-by: makeworld <[email protected]>

* Fix: fix the cmp-nvim-lsp-signature-help link (nvim-lua#1363)

* fix: regression introduced in db78c0b (nvim-lua#1367)

* Remove duplicate cmp-path (nvim-lua#1369)

* Propsed fix for init.lua warnings as per nvim-lua#1305 (comment) (nvim-lua#1354)

* feat: add `vim.opt.confirm = true` (nvim-lua#1384)

* fix: use correct github abmonition syntax (nvim-lua#1414)

* changed Conform's format_on_save lambda so that buffers that match disable_filetypes return nil. This allows you to enable a formatter for langages in the disable_filetypes table to have a formatter that can be run manually with Leader-f but doesnt enable format_on_save for them (nvim-lua#1395)

* feat(keymap): move windows without `<C-w>` (nvim-lua#1368)

* fix: minor misspellings (nvim-lua#1450)

* fix: minor misspellings

* revert change for `-Bbuild`

* Change LSP Keybindings to Match the Default `gr` Bindings Introduced in Neovim 0.11 (nvim-lua#1427)

* refactor: change LSP keybindings to the default gr bindings introduced in 0.11

* refactor: modify existing LSP functions to follow  convention

* Remove Telescope `0.1` branch lock (nvim-lua#1448)

* feat: switch nvim-cmp for blink.cmp (nvim-lua#1426)

* remove cmp.lua which was replaced with blink-cmp.lua

* Change to Mason's new address (nvim-lua#1516)

* feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)

* Replace vim.opt with vim.o (nvim-lua#1495)

* 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

* don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)

* README: mention fd-find in requirements (nvim-lua#1477)

Fixes nvim-lua#1476

* fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)

The functions of vim.highlight were renamed to vim.hl on commit
18b43c331d8a0ed87d7cbefe2a18543b8e4ad360 of neovim, which was applied
with the release of nvim version 0.11.

Now, the use of vim.highlight is deprecated, and instead, one should
use vim.hl functions.
In practice, vim.highlight is still working, however, asking for help
for vim.highlight.on_yank fails (E149), while asking for help for
vim.hl.on_yank works as expected. So, by updating the used function, a
new user will have easier time looking getting the relevant help.

Co-authored-by: Omri Sarig <[email protected]>

* Update windows installation command

* remove conflicting stuff

* more changes

* more

---------

Co-authored-by: Damjan 9000 <[email protected]>
Co-authored-by: Peter S. Jaglom <[email protected]>
Co-authored-by: Vinit Neogi <[email protected]>
Co-authored-by: Ryan Nevius <[email protected]>
Co-authored-by: bleacheda <[email protected]>
Co-authored-by: Erlan Rangel <[email protected]>
Co-authored-by: Chris Patti <[email protected]>
Co-authored-by: Jonas Zeltner <[email protected]>
Co-authored-by: GeloCraft <[email protected]>
Co-authored-by: gelocraft <[email protected]>
Co-authored-by: Joaquín Guerra <[email protected]>
Co-authored-by: Rob <[email protected]>
Co-authored-by: makeworld <[email protected]>
Co-authored-by: Aryan Rajoria <[email protected]>
Co-authored-by: Ari Pollak <[email protected]>
Co-authored-by: Crypto-Spartan <[email protected]>
Co-authored-by: Luca Saccarola <[email protected]>
Co-authored-by: RulentWave <[email protected]>
Co-authored-by: Sander <[email protected]>
Co-authored-by: dasvh <[email protected]>
Co-authored-by: Theo P. <[email protected]>
Co-authored-by: Dmytro Onypko <[email protected]>
Co-authored-by: Liam Dyer <[email protected]>
Co-authored-by: guru245 <[email protected]>
Co-authored-by: Ori Perry <[email protected]>
Co-authored-by: pynappo <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: jaho5 <[email protected]>
arkottke pushed a commit to arkottke/kickstart.nvim that referenced this pull request May 21, 2025
karolis-arbaciauskas added a commit to karolis-arbaciauskas/kickstart.nvim that referenced this pull request May 22, 2025
commit 6ba2408
Author: Omri Sarig <[email protected]>
Date:   Sun May 11 02:29:04 2025 +0200

    fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)

    The functions of vim.highlight were renamed to vim.hl on commit
    18b43c331d8a0ed87d7cbefe2a18543b8e4ad360 of neovim, which was applied
    with the release of nvim version 0.11.

    Now, the use of vim.highlight is deprecated, and instead, one should
    use vim.hl functions.
    In practice, vim.highlight is still working, however, asking for help
    for vim.highlight.on_yank fails (E149), while asking for help for
    vim.hl.on_yank works as expected. So, by updating the used function, a
    new user will have easier time looking getting the relevant help.

    Co-authored-by: Omri Sarig <[email protected]>

commit f5a9f9c
Author: Damjan 9000 <[email protected]>
Date:   Sun May 11 02:23:54 2025 +0200

    README: mention fd-find in requirements (nvim-lua#1477)

    Fixes nvim-lua#1476

commit fb73617
Author: pynappo <[email protected]>
Date:   Sat May 10 17:18:04 2025 -0700

    don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)

commit c92ea7c
Author: Ori Perry <[email protected]>
Date:   Sun May 11 03:16:03 2025 +0300

    Replace vim.opt with vim.o (nvim-lua#1495)

    * 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

commit 2b2f0f8
Author: guru245 <[email protected]>
Date:   Sun May 11 09:11:50 2025 +0900

    feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)

commit 76cb865
Author: guru245 <[email protected]>
Date:   Sat May 10 08:41:44 2025 +0900

    Change to Mason's new address (nvim-lua#1516)
gcaufield added a commit to gcaufield/kickstart.nvim that referenced this pull request May 23, 2025
* upstream/master:
  Update remaining Mason's old address (nvim-lua#1530)
  fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)
  README: mention fd-find in requirements (nvim-lua#1477)
  don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)
  Replace vim.opt with vim.o (nvim-lua#1495)
  feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)
  Change to Mason's new address (nvim-lua#1516)
  feat: switch nvim-cmp for blink.cmp (nvim-lua#1426)
  Remove Telescope `0.1` branch lock (nvim-lua#1448)
  Change LSP Keybindings to Match the Default `gr` Bindings Introduced in Neovim 0.11 (nvim-lua#1427)
  fix: minor misspellings (nvim-lua#1450)
  feat(keymap): move windows without `<C-w>` (nvim-lua#1368)
  changed Conform's format_on_save lambda so that buffers that match disable_filetypes return nil. This allows you to enable a formatter for langages in the disable_filetypes table to have a formatter that can be run manually with Leader-f but doesnt enable format_on_save for them (nvim-lua#1395)
  fix: use correct github abmonition syntax (nvim-lua#1414)
ests pushed a commit to ests/kickstart.nvim that referenced this pull request May 24, 2025
ests pushed a commit to ests/kickstart.nvim that referenced this pull request May 24, 2025
@ests ests mentioned this pull request May 24, 2025
bradenaa added a commit to bradenaa/kickstart.nvim that referenced this pull request May 24, 2025
* Change to Mason's new address (nvim-lua#1516)

* feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)

* Replace vim.opt with vim.o (nvim-lua#1495)

* 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

* don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)

* README: mention fd-find in requirements (nvim-lua#1477)

Fixes nvim-lua#1476

* fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)

The functions of vim.highlight were renamed to vim.hl on commit
18b43c331d8a0ed87d7cbefe2a18543b8e4ad360 of neovim, which was applied
with the release of nvim version 0.11.

Now, the use of vim.highlight is deprecated, and instead, one should
use vim.hl functions.
In practice, vim.highlight is still working, however, asking for help
for vim.highlight.on_yank fails (E149), while asking for help for
vim.hl.on_yank works as expected. So, by updating the used function, a
new user will have easier time looking getting the relevant help.

Co-authored-by: Omri Sarig <[email protected]>

* Update remaining Mason's old address (nvim-lua#1530)

* conflict

* move plugins to folder

---------

Co-authored-by: guru245 <[email protected]>
Co-authored-by: Ori Perry <[email protected]>
Co-authored-by: pynappo <[email protected]>
Co-authored-by: Damjan 9000 <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Carlos Calla Alarcón <[email protected]>
melito00 pushed a commit to melito00/kickstart.nvim that referenced this pull request May 25, 2025
goglx pushed a commit to goglx/kickstart.nvim that referenced this pull request May 29, 2025
cyrillkuettel pushed a commit to cyrillkuettel/kickstart.nvim that referenced this pull request May 29, 2025
WaterAtTheBottomOfTheOcean pushed a commit to WaterAtTheBottomOfTheOcean/kickstart.nvim that referenced this pull request May 30, 2025
audunhov pushed a commit to audunhov/kickstart.nvim that referenced this pull request May 30, 2025
faizfrhn added a commit to faizfrhn/kickstart.nvim that referenced this pull request Jun 6, 2025
* Change to Mason's new address (nvim-lua#1516)
* feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)
* Replace vim.opt with vim.o (nvim-lua#1495)
* don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)
* README: mention fd-find in requirements (nvim-lua#1477)
* fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)
* Update remaining Mason's old address (nvim-lua#1530)
cyrillkuettel pushed a commit to cyrillkuettel/kickstart.nvim that referenced this pull request Jun 8, 2025
ruolis pushed a commit to ruolis/kickstart.nvim that referenced this pull request Jun 10, 2025
mohamadalinaghian pushed a commit to mohamadalinaghian/kickstart.nvim that referenced this pull request Jun 11, 2025
4ktivated pushed a commit to 4ktivated/nvim-dotfiles that referenced this pull request Jun 12, 2025
invalidoperation pushed a commit to invalidoperation/kickstart.nvim that referenced this pull request Jun 14, 2025
invalidoperation pushed a commit to invalidoperation/kickstart.nvim that referenced this pull request Jun 14, 2025
screwage pushed a commit to screwage/kickstart.nvim that referenced this pull request Jun 17, 2025
octopussy pushed a commit to octopussy/kickstart.nvim that referenced this pull request Jun 20, 2025
Kilo-Loco pushed a commit to Kilo-Loco/kickstart.nvim that referenced this pull request Jun 24, 2025
julianbopp pushed a commit to julianbopp/kickstart.nvim that referenced this pull request Jun 26, 2025
knguyen-66 pushed a commit to knguyen-66/kickstart.nvim that referenced this pull request Jun 28, 2025
eduardofuncao pushed a commit to eduardofuncao/config.nvim that referenced this pull request Jun 28, 2025
DannyHo15 pushed a commit to DannyHo15/kickstart.nvim that referenced this pull request Jun 29, 2025
codemedic added a commit to codemedic/kickstart.nvim that referenced this pull request Jul 10, 2025
* master:
  Update remaining Mason's old address (nvim-lua#1530)
  fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)
  README: mention fd-find in requirements (nvim-lua#1477)
  don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)
  Replace vim.opt with vim.o (nvim-lua#1495)
  feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)
  Change to Mason's new address (nvim-lua#1516)
  feat: switch nvim-cmp for blink.cmp (nvim-lua#1426)
  Remove Telescope `0.1` branch lock (nvim-lua#1448)
  Change LSP Keybindings to Match the Default `gr` Bindings Introduced in Neovim 0.11 (nvim-lua#1427)
  fix: minor misspellings (nvim-lua#1450)
  feat(keymap): move windows without `<C-w>` (nvim-lua#1368)
  changed Conform's format_on_save lambda so that buffers that match disable_filetypes return nil. This allows you to enable a formatter for langages in the disable_filetypes table to have a formatter that can be run manually with Leader-f but doesnt enable format_on_save for them (nvim-lua#1395)
  fix: use correct github abmonition syntax (nvim-lua#1414)
  feat: add `vim.opt.confirm = true` (nvim-lua#1384)
rexfordessilfie pushed a commit to rexfordessilfie/kickstart.nvim that referenced this pull request Jul 22, 2025
nico281 pushed a commit to nico281/kickstart-modular.nvim that referenced this pull request Jul 25, 2025
gabriel-kimutai pushed a commit to gabriel-kimutai/nvim that referenced this pull request Aug 1, 2025
gabriel-kimutai pushed a commit to gabriel-kimutai/nvim that referenced this pull request Aug 1, 2025
adityaravichandran6 added a commit to adityaravichandran6/mazov.nvim that referenced this pull request Aug 5, 2025
* fix: minor misspellings (nvim-lua#1450)

* fix: minor misspellings

* revert change for `-Bbuild`

* Change LSP Keybindings to Match the Default `gr` Bindings Introduced in Neovim 0.11 (nvim-lua#1427)

* refactor: change LSP keybindings to the default gr bindings introduced in 0.11

* refactor: modify existing LSP functions to follow  convention

* Remove Telescope `0.1` branch lock (nvim-lua#1448)

* feat: switch nvim-cmp for blink.cmp (nvim-lua#1426)

* Change to Mason's new address (nvim-lua#1516)

* feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)

* Replace vim.opt with vim.o (nvim-lua#1495)

* 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

* don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)

* README: mention fd-find in requirements (nvim-lua#1477)

Fixes nvim-lua#1476

* fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)

The functions of vim.highlight were renamed to vim.hl on commit
18b43c331d8a0ed87d7cbefe2a18543b8e4ad360 of neovim, which was applied
with the release of nvim version 0.11.

Now, the use of vim.highlight is deprecated, and instead, one should
use vim.hl functions.
In practice, vim.highlight is still working, however, asking for help
for vim.highlight.on_yank fails (E149), while asking for help for
vim.hl.on_yank works as expected. So, by updating the used function, a
new user will have easier time looking getting the relevant help.

Co-authored-by: Omri Sarig <[email protected]>

* Update remaining Mason's old address (nvim-lua#1530)

* Initial plugin setup (#1)

This adds a basic layer of plugins. But more language and workflow specific plugins are to follow possibly.

---------

Co-authored-by: dasvh <[email protected]>
Co-authored-by: Theo P. <[email protected]>
Co-authored-by: Dmytro Onypko <[email protected]>
Co-authored-by: Liam Dyer <[email protected]>
Co-authored-by: guru245 <[email protected]>
Co-authored-by: Ori Perry <[email protected]>
Co-authored-by: pynappo <[email protected]>
Co-authored-by: Damjan 9000 <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Carlos Calla Alarcón <[email protected]>
eduardofuncao pushed a commit to eduardofuncao/config.nvim that referenced this pull request Aug 5, 2025
adityaravichandran6 added a commit to adityaravichandran6/mazov.nvim that referenced this pull request Aug 7, 2025
* fix: minor misspellings (nvim-lua#1450)

* fix: minor misspellings

* revert change for `-Bbuild`

* Change LSP Keybindings to Match the Default `gr` Bindings Introduced in Neovim 0.11 (nvim-lua#1427)

* refactor: change LSP keybindings to the default gr bindings introduced in 0.11

* refactor: modify existing LSP functions to follow  convention

* Remove Telescope `0.1` branch lock (nvim-lua#1448)

* feat: switch nvim-cmp for blink.cmp (nvim-lua#1426)

* Change to Mason's new address (nvim-lua#1516)

* feat: switch vim-sleuth for guess-indent.nvim (nvim-lua#1512)

* Replace vim.opt with vim.o (nvim-lua#1495)

* 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

* don't lazy-load neo-tree so netrw hijacking on startup works (nvim-lua#1489)

* README: mention fd-find in requirements (nvim-lua#1477)

Fixes nvim-lua#1476

* fix: rename vim.highlight.on_yank to vim.hl.on_yank (nvim-lua#1482)

The functions of vim.highlight were renamed to vim.hl on commit
18b43c331d8a0ed87d7cbefe2a18543b8e4ad360 of neovim, which was applied
with the release of nvim version 0.11.

Now, the use of vim.highlight is deprecated, and instead, one should
use vim.hl functions.
In practice, vim.highlight is still working, however, asking for help
for vim.highlight.on_yank fails (E149), while asking for help for
vim.hl.on_yank works as expected. So, by updating the used function, a
new user will have easier time looking getting the relevant help.

Co-authored-by: Omri Sarig <[email protected]>

* Update remaining Mason's old address (nvim-lua#1530)

* Initial plugin setup (#1)

This adds a basic layer of plugins. But more language and workflow specific plugins are to follow possibly.

---------

Co-authored-by: dasvh <[email protected]>
Co-authored-by: Theo P. <[email protected]>
Co-authored-by: Dmytro Onypko <[email protected]>
Co-authored-by: Liam Dyer <[email protected]>
Co-authored-by: guru245 <[email protected]>
Co-authored-by: Ori Perry <[email protected]>
Co-authored-by: pynappo <[email protected]>
Co-authored-by: Damjan 9000 <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Omri Sarig <[email protected]>
Co-authored-by: Carlos Calla Alarcón <[email protected]>
alex-rieger pushed a commit to alex-rieger/kickstart.nvim that referenced this pull request Aug 17, 2025
zDyant pushed a commit to zDyant/nvim.config that referenced this pull request Aug 17, 2025
k7o pushed a commit to k7o/kickstart.nvim that referenced this pull request Aug 18, 2025
mihaipop11 pushed a commit to mihaipop11/kickstart.nvim that referenced this pull request Aug 19, 2025
benfleuty pushed a commit to benfleuty/kickstart.nvim that referenced this pull request Aug 19, 2025
LoganSchmalz pushed a commit to LoganSchmalz/kickstart.nvim that referenced this pull request Aug 21, 2025
ncason pushed a commit to ncason/kickstart.nvim that referenced this pull request Aug 23, 2025
nrhooks17 pushed a commit to nrhooks17/central-nvim that referenced this pull request Aug 26, 2025
sooren-ghodsi pushed a commit to sooren-ghodsi/kickstart.nvim that referenced this pull request Aug 26, 2025
2takker pushed a commit to 2takker/kickstart.nvim that referenced this pull request Sep 2, 2025
VlaDexa pushed a commit to VlaDexa/nvim-config that referenced this pull request Sep 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fd-find expected to be installed?
2 participants