Commit graph

1855 commits

Author SHA1 Message Date
Ching Pei Yang
14ca70e490
home-manager: forgot to remove trace 2025-02-16 13:16:41 +01:00
Ching Pei Yang
72ae20dc3d
blink: fix missing inputs.self in HM and NixOS modules ()
* home-manager: fix missing inputs.self

some options in nvf module uses inputs.self but it's not exposed in the
inputs we pass to home-manager module:

example flake.nix:

```
{
	inputs = { /* ... */ };
	outputs = {nixpkgs, ...}@inputs: {
		testing = {
			a = inputs.self             # valid
			b = inputs.self.inputs      # valid
			c = inputs.self.inputs.self # does not exist

			# prior to this change, inputs.self.inputs was passed to the hm
			# module, which lacks the self attr
			#
			# This change passes in the "top-level" inputs instead.
		};
	};
}
```

* nixos: fix missing inputs.self

see previous commit for details
2025-02-16 11:35:13 +00:00
ARCIII
0644475408
utility/leetcode-nvim: init ()
* utility/leetcode-nvim: init

* utility/leetcode.nvim: Clean Code

Cleaned code upon PR review comments
2025-02-16 08:10:32 +00:00
4196be3ac8
ci: get rid of magic-nix-cache 2025-02-14 14:59:52 +03:00
Ben Mayer
a86df770c1
plugins/git: add git-conflict-nvim ()
* plugins/git: add git-conflict-nvim; modularize

* plugins/git: build git-conflict-nvim ourselves
2025-02-14 11:57:21 +00:00
Alfarel
e49228d642
npins: add conform-nvim, nvim-lint () 2025-02-13 15:17:13 +00:00
Ian Allaway
9b20083128
nvim-surround: fix typo in description ()
Removed extra 'e' from the word upstream in description

Co-authored-by: raf <raf@notashelf.dev>
2025-02-13 04:38:51 +00:00
Gerg-L
63c032cf87
flake: fix using blink-cmp package () 2025-02-13 03:18:02 +00:00
Hamburgir
6e7e91fc11
languages/flutter: update package name to match pin () 2025-02-12 11:54:22 +00:00
raf
fe60999d1e
Merge pull request from NotAShelf/npins-fixes
treewide: update plugin references by name after npins migration
2025-02-12 11:47:27 +00:00
raf
b9968f13bd
Merge branch 'main' into npins-fixes 2025-02-12 11:45:36 +00:00
80a4ab903c
flake: use npins for blink-cmp source 2025-02-12 14:36:06 +03:00
c96f5f0d8c
languages/ts: fix npins name incompat 2025-02-11 22:18:38 +03:00
033a47a7d6
visuals/tiny-deviocns-auto-colors: fix npins name incompat 2025-02-11 22:17:27 +03:00
678598167c
notes/orgmode: fix npins name incompat 2025-02-11 22:17:12 +03:00
d221c4b49a
session/nvim-session-manager: fix npins name incompat 2025-02-11 22:13:58 +03:00
6538fadb65
languages/elixir: fix npins name incompat 2025-02-11 22:08:29 +03:00
f62de17141
languages/csharp: fix npins name incompat 2025-02-11 22:07:47 +03:00
dad18b3226
assistant/chatgpt: fix npins name incompat 2025-02-11 22:06:10 +03:00
fd8e97a2ff
visuals/cellular-automaton: fix npins name incompat 2025-02-11 22:04:59 +03:00
14d25e4153
pins: yanky.nvim -> yanky-nvim 2025-02-11 22:03:29 +03:00
d4a1fb26f1
utility/ccc: fix npins name incompat 2025-02-11 21:50:14 +03:00
Alex Colby
0c6308313b
flake: update npins pins for themes ()
* fix: corrects theme names in `npins/sources.json`

See:
- [themes broken](https://github.com/NotAShelf/nvf/issues/619)
- [lspkind broken](https://github.com/NotAShelf/nvf/issues/624)

* release-notes: adds fix to plugin theme names
2025-02-11 18:38:02 +00:00
Filip Hoffmann
7eb1780ab6
lsp/lspkind: fix plugin name ()
* lsp/lspkind: fix plugin name

* docs: update changelog

---------

Co-authored-by: raf <raf@notashelf.dev>
2025-02-11 17:46:49 +00:00
raf
ae677cebfa
Merge pull request from iynaix/add-nixd-opts
languages/nix: add lsp options support for nixd
2025-02-11 17:45:04 +00:00
raf
6d7b8ec2f1
Merge branch 'main' into add-nixd-opts 2025-02-11 17:25:42 +00:00
Alfarel
c4cb29b7a3
docs: add missing npins subcommand () 2025-02-11 17:21:16 +00:00
Lin Xianyi
5671d7b42c languages/nix: add lsp options support for nixd 2025-02-12 00:50:27 +08:00
raf
39d4e7796b
Merge pull request from alfarelcynthesis/npins-plugin-fixes
rainbow-delimiters: fix startPlugins name
2025-02-11 15:29:21 +00:00
alfarel
b9562b3314 rainbow-delimiters: fix startPlugins name 2025-02-11 10:13:52 -05:00
raf
6469e061f6
Merge pull request from Gerg-L/main
flake: use nixpkgs fetchers for npins
2025-02-11 11:31:27 +00:00
8adc4c352a
treewide: Use nixpkgs fetchers for npins
plugins: switch from neodev to lazydev
2025-02-10 22:33:36 -05:00
7510ef2c13
flake: move all plugin inputs to npins 2025-02-10 18:41:19 -05:00
5b5fd3db14
modules: import diagnostics and formatter modules 2025-02-10 18:40:32 -05:00
5554c867ee
formatter/conform-nvim: init 2025-02-10 18:40:32 -05:00
021f2531cc
diagnostics/nvim-lint: init 2025-02-10 18:40:32 -05:00
2476d7e78f
flake: add conform-nvim and nvim-lint 2025-02-10 18:40:32 -05:00
raf
a78026438c
Merge pull request from horriblename/feat-blink
completion/blink.cmp: add
2025-02-09 08:27:19 +00:00
raf
f192344f7d
Merge branch 'main' into feat-blink 2025-02-09 08:25:04 +00:00
316d4a0825
modules/extra: fix scrolOf typo 2025-02-08 10:46:02 +03:00
3f9078d7d9
neovim/mappings: remove remnants of vim.disableArrows 2025-02-07 17:00:45 +03:00
e5ced28b67
ci: remove magic-nix-cache 2025-02-07 16:02:50 +03:00
75b402e9f0
neovim/init: deprecate vim.disableArrows; add missing rename 2025-02-07 15:49:24 +03:00
raf
ff31e0fe25
Merge pull request from nezia1/add-nixd
languages/nix: add nixd
2025-02-06 16:45:30 +00:00
raf
8f7d2181ae
Merge branch 'main' into feat-blink 2025-02-06 12:26:21 +00:00
Anthony Rodriguez
132c3da8ec
languages/nix: add nixd
This adds the [nixd](https://github.com/nix-community/nixd) language
server.
2025-02-06 13:24:39 +01:00
raf
a6d9e75f37
Merge pull request from horriblename/fix-telescope-bad-option
Telescope: remove invalid option `results_width`
2025-02-06 11:28:51 +00:00
Ching Pei Yang
88fdf83156
overlay: use overlayed pkgs in .#nix and .#maximal 2025-02-06 19:26:22 +08:00
Ching Pei Yang
8a069a6835
blink: move package into legacyPackage 2025-02-06 19:26:21 +08:00
Ching Pei Yang
9dccd4b4a8
autocomplete: move shared code into common parent 2025-02-06 19:26:20 +08:00