File tree Expand file tree Collapse file tree 6 files changed +50
-0
lines changed
docs/manual/release-notes Expand file tree Collapse file tree 6 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 138138 [Tombi](https://tombi-toml.github.io/tombi/) language server, linter, and
139139 formatter.
140140
141+ - Added [hlargs.nvim](https://github.com/m-demare/hlargs.nvim) support as
142+ `visuals.hlargs-nvim`.
143+
141144[Machshev](https://github.com/machshev):
142145
143146- Added `ruff` and `ty` LSP support for Python under `programs.python`.
Original file line number Diff line number Diff line change 1111 ./cinnamon-nvim
1212 ./fidget-nvim
1313 ./highlight-undo
14+ ./hlargs-nvim
1415 ./indent-blankline
1516 ./nvim-cursorline
1617 ./nvim-scrollbar
Original file line number Diff line number Diff line change 1+ {
2+ config ,
3+ lib ,
4+ ...
5+ } : let
6+ inherit ( lib . modules ) mkIf ;
7+ inherit ( lib . nvim . dag ) entryAnywhere ;
8+ inherit ( lib . nvim . lua ) toLuaObject ;
9+ cfg = config . vim . visuals . hlargs-nvim ;
10+ in {
11+ vim = mkIf cfg . enable {
12+ startPlugins = [ "hlargs-nvim" ] ;
13+
14+ pluginRC . hlargs-nvim = entryAnywhere ''
15+ require('hlargs').setup(${ toLuaObject cfg . setupOpts } )
16+ '' ;
17+ } ;
18+ }
Original file line number Diff line number Diff line change 1+ {
2+ imports = [
3+ ./hlargs-nvim.nix
4+ ./config.nix
5+ ] ;
6+ }
Original file line number Diff line number Diff line change 1+ { lib , ...} : let
2+ inherit ( lib . options ) mkEnableOption ;
3+ inherit ( lib . nvim . types ) mkPluginSetupOption ;
4+ in {
5+ options . vim . visuals . hlargs-nvim = {
6+ enable = mkEnableOption "hlargs-nvim" ;
7+ setupOpts = mkPluginSetupOption "hlargs-nvim" { } ;
8+ } ;
9+ }
Original file line number Diff line number Diff line change 708708 "url" : " https://github.com/tzachar/highlight-undo.nvim/archive/ee32e12693d70e66f954d09a504a7371d110fc27.tar.gz" ,
709709 "hash" : " sha256-yU4i3uPI7qghxdevOuqzxu8gIol6pxgd7TIY6vnyfiU="
710710 },
711+ "hlargs-nvim" : {
712+ "type" : " Git" ,
713+ "repository" : {
714+ "type" : " GitHub" ,
715+ "owner" : " m-demare" ,
716+ "repo" : " hlargs.nvim"
717+ },
718+ "branch" : " main" ,
719+ "submodules" : false ,
720+ "revision" : " 0b29317c944fb1f76503ce4540d6dceffbb5ccd2" ,
721+ "url" : " https://github.com/m-demare/hlargs.nvim/archive/0b29317c944fb1f76503ce4540d6dceffbb5ccd2.tar.gz" ,
722+ "hash" : " sha256-WjmVefR0qk2ANWgyHSuYMTuCfzlVTF7tqzAL+uatKkc="
723+ },
711724 "hop.nvim" : {
712725 "type" : " GitRelease" ,
713726 "repository" : {
You can’t perform that action at this time.
0 commit comments