-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
1001 lines (901 loc) · 26 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ pkgs, ... }:
{
# Import all your configuration modules here
imports = [
./conform.nix
./dap.nix
./lualine.nix
./package-info.nix
./telescope.nix
./trouble.nix
# ./ufo.nix
];
# extra packages to install with nix
extraPackages = with pkgs; [
wl-clipboard # wayland clipboard utils
ripgrep # fast search for grug-far
#zls # zig LSP
#biome # JS linter and formatter
];
withNodeJs = false; # install Node and Node plugin provider npm package "neovim"
withRuby = false; # install Ruby and Ruby plugin provider gem "neovim-ruby"
clipboard = {
#register = "unnamedplus"; # use system clipboard as default register
providers.wl-copy.enable = true; # use wl-clipboard CLI utils
};
globals = {
have_nerd_font = true; # Cascadia Code NF
mapleader = " "; # set leader key to spacebar
# disable plugin providers
loaded_node_provider = 0; # requires npm package "neovim"
loaded_perl_provider = 0; # requires cpan package "Neovim::Ext"
loaded_python3_provider = 0; # requires pip package "pynvim"
loaded_ruby_provider = 0; # requires gem "neovim-ruby"
};
opts = {
# cursor
cursorline = true; # highlight cursor line
cursorlineopt = "number,line"; # number, line, both, screenline
# folding
foldenable = true;
foldcolumn = "0"; # fold column width
foldtext = ""; # set to empty string so that it doesn't mess with syntax highlighting
foldlevelstart = 99; # start buffer with all folds open
# indents
expandtab = true; # expand tabs to spaces
shiftwidth = 2; # number of spaces to use for each step of indent
tabstop = 2; # number of spaces that a tab counts for
breakindent = true; # wrapped lines will get visually indented
showbreak = "↳"; # string to put at the start of wrapped lines
# line numbers
number = true;
relativenumber = true;
# list mode
# (whitespace characters; see :h listchars)
# default listchars: "tab:> ,trail:-,nbsp:+"
# end of line (eol): ⏎ return symbol U+23CE
# tab:
# start (second displayed character): <
# middle (fills remaining space): -
# end (first displayed character): >
# trailing space: ␣ open box U+2423
# extends: ⪼ double succeeds U+2ABC
# precedes: ⪻ double precedes U+2ABB
# non-breaking space: ⍽ shouldered open box U+237D
list = true;
listchars = "tab:<->,trail:␣,extends:⪼,precedes:⪻,nbsp:⍽";
# scroll
scrolloff = 999; # minimum number of screen lines to keep visible around the cursor
sidescrolloff = 10; # minimum number of screen columns to keep visible around the cursor
# search
ignorecase = true; # ignore case if all lowercase
smartcase = true; # case-sensitive if mixed-case
inccommand = "split"; # incremental preview for substitute
# sessions
# auto-session suggests adding: winpos, localoptions
sessionoptions = "blank,buffers,curdir,folds,help,tabpages,terminal,winpos,winsize";
# ...rest
colorcolumn = "81"; # display vertical line
signcolumn = "yes:1"; # text shifts when column gets toggled, so just leave it on
termguicolors = true; # enable 24-bit colours
virtualedit = "block"; # when in visual block mode, the cursor can move freely in columns
};
# colours
colorschemes = {
cyberdream = {
enable = true;
settings = {
italic_comments = true;
transparent = true;
};
};
};
highlightOverride = {
NonText = {
link = "Conceal"; # override NonText with link to Conceal
};
};
filetype = {
extension = {
"postcss" = "scss";
};
pattern = {
"flake.lock" = "json";
};
};
plugins = {
# completions
cmp = {
enable = true;
settings = {
mapping = {
"<C-n>" = "cmp.mapping(cmp.mapping.select_next_item())";
"<C-p>" = "cmp.mapping(cmp.mapping.select_prev_item())";
"<C-b>" = "cmp.mapping.scroll_docs(-4)";
"<C-f>" = "cmp.mapping.scroll_docs(4)";
"<C-Space>" = "cmp.mapping.complete()"; # trigger completions
"<C-e>" = "cmp.mapping.abort()";
"<C-y>" = "cmp.mapping.confirm({ select = true })";
"<CR>" = "cmp.mapping.confirm({ select = false })"; # set `select = false` to only confirm explicitly selected items
# from kickstart.nvim
# <C-l> move to the right of each of the expansion locations
# <C-h> is similar, except moving backwards
"<C-l>" = # lua
''
cmp.mapping(function()
if luasnip.expand_or_locally_jumpable() then
luasnip.expand_or_jump()
end
end, { 'i', 's' })
'';
"<C-h>" = # lua
''
cmp.mapping(function()
if luasnip.locally_jumpable(-1) then
luasnip.jump(-1)
end
end, { 'i', 's' })
'';
};
snippets.expand = # lua
''
function(args)
require('luasnip').lsp_expand(args.body)
end
'';
sources = [
{ name = "nvim_lsp_signature_help"; } # display function signature, with current parameter emphasized
{ name = "nvim_lsp"; }
{ name = "nvim_lua"; } # neovim Lua API, only works in lua bits
{ name = "luasnip"; }
{ name = "buffer"; }
{ name = "emoji"; }
];
window = {
completion = {
border = "double";
scrolloff = 5;
winhighlight = "Normal:Pmenu,FloatBorder:FloatBorder,Search:None";
};
documentation = {
border = "double";
winhighlight = "Normal:Pmenu,FloatBorder:FloatBorder,Search:None";
};
};
};
};
# snippets
friendly-snippets.enable = true;
luasnip.enable = true; # snippet engine - required for completions
# git diffview tabpage, merge tool, file history
diffview.enable = true;
# git diffs as coloured symbols in signcolumn
gitsigns = {
enable = true;
settings.current_line_blame_opts.delay = 0;
};
# fancy git interface
neogit = {
enable = true;
settings.integrations = {
diffview = true;
telescope = true;
};
};
# language servers
lsp = {
enable = true;
inlayHints = true;
keymaps = {
# mappings for `vim.lsp.buf.<action>()` functions
# can't define modes from here
# https://github.com/nix-community/nixvim/issues/1157
# lspBuf = {
# "gra" = {
# action = "code_action";
# desc = "LSP code_action";
# };
# "grd" = {
# action = "definition";
# desc = "LSP definition";
# };
# "grf" = {
# action = "format";
# desc = "LSP format";
# };
# "gri" = {
# action = "implementation";
# desc = "LSP implementation";
# };
# "grn" = {
# action = "rename";
# desc = "LSP rename";
# };
# "grr" = {
# action = "references";
# desc = "LSP references";
# };
# "grt" = {
# action = "type_definition";
# desc = "LSP type_definition";
# };
# "<C-s>" = {
# action = "signature_help";
# desc = "LSP signature_help";
# };
# };
};
servers = {
# from vscode-langservers-extracted
# cssls = {
# enable = true;
# settings = {
# css.lint.unknownAtRules = "ignore"; # ignore tailwind `@apply`
# };
# };
# eslint.enable = true;
html.enable = true;
# jsonls.enable = true;
svelte.enable = true;
# on Windows this is slooooooooow to start
# ts_ls.enable = true; # TypeScript
# formatter for JavaScript, TypeScript, JSX, JSON, CSS and GraphQL
# linter for JavaScript, TypeScript, JSX, CSS and GraphQL
# npm install --save-dev --save-exact @biomejs/biome && npx @biomejs/biome init
#biome.enable = true;
# official tailwind LSP
# npm install @tailwindcss/language-server
tailwindcss.enable = true;
#gdscript.enable = true; # Godot
lua_ls = {
enable = true;
settings.telemetry.enable = false;
};
nixd.enable = true;
# rust_analyzer = {
# enable = true;
# installCargo = false;
# installRustc = false;
# };
#yamlls.enable = true;
#zls.enable = true;
};
};
lspkind = {
enable = true; # add pictograms for LSP completion items
cmp = {
enable = true; # format nvim-cmp menu
menu = {
nvim_lsp_signature_help = "[LSP_help]";
nvim_lsp = "[LSP]";
nvim_lua = "[Lua]";
luasnip = "[LuaSnip]";
buffer = "[Buffer]";
emoji = "[Emoji]";
};
};
mode = "symbol_text"; # "text", "text_symbol", "symbol_text", "symbol"
preset = "default"; # "default" requires nerd font, "codicons" requires vscode-codicons font
};
inc-rename.enable = true; # preview rename while typing
# linting
lint = {
enable = true;
lintersByFt = {
# css = [ "stylelint" ]; # TODO disabled annoying error message when not installed
# javascript = [ "eslint" ];
# javascriptreact = [ "eslint" ];
# typescript = [ "eslint" ];
# typescriptreact = [ "eslint" ];
svelte = [ "eslint" ];
css = [ "biomejs" ];
javascript = [ "biomejs" ];
javascriptreact = [ "biomejs" ];
typescript = [ "biomejs" ];
typescriptreact = [ "biomejs" ];
};
};
# testing
#neotest = {
# enable = true;
#
# adapters = {
# vitest.enable = true;
# };
#};
# treesitter
comment.enable = true; # "gc{object/motion}" and "gb{object}" to comment
indent-blankline = {
enable = true; # show indent guides
settings = {
scope = {
enabled = true; # highlight indent and underline top and bottom of scope
show_end = true;
show_exact_scope = true;
show_start = true;
};
};
};
nvim-autopairs.enable = true; # pair brackets, quotes
nvim-surround.enable = true; # add: `ys{motion}{char}`, delete: `ds{char}`, change: `cs{target}{replacement}`
rainbow-delimiters.enable = true; # matching brackets get matching colours
treesitter = {
enable = true; # parse text as Abstract Syntax Tree (AST) for better understanding
folding = true;
nixvimInjections = true; # enable nixvim specific injections, like lua highlighting in extraConfigLua
nixGrammars = true; # default true
nodejsPackage = null; # required to build grammars if you are not using `nixGrammars`
settings = {
highlight.enable = true;
indent.enable = true;
# incremental_selection = {
# enable = true;
#
# keymaps = {
# init_selection = "gnn"; # set to `false` to disable mapping
# node_incremental = "grn";
# scope_incremental = "grc";
# node_decremental = "grm";
# };
# };
};
};
treesitter-context = {
enable = true; # sticky scope
settings = {
#enable = false; # toggle with :TSContextToggle
max_lines = 4;
};
};
treesitter-textobjects = {
enable = true;
lspInterop = {
enable = true;
border = "double";
peekDefinitionCode = {
"<leader>d" = {
query = "";
desc = "+Treesitter textobjects (TSTextobject)";
};
"<leader>df" = {
query = "@function.outer";
desc = "TSTextobject: peek function definition";
};
"<leader>dF" = {
query = "@class.outer";
desc = "TSTextobject: peek class definition";
};
};
};
move = {
enable = true;
gotoNextStart = {
"]c" = {
query = "@class.outer";
desc = "TSTextobject: next start class outer";
};
"]f" = {
query = "@function.outer";
desc = "TSTextobject: next start function outer";
};
"]p" = {
query = "@parameter.outer";
desc = "TSTextobject: next start parameter outer";
};
# You can use regex matching (i.e. lua pattern) and/or pass a list in a "query" key to group multiple queries.
# "]o" = { query = { "@loop.inner", "@loop.outer" }; };
"]o" = {
query = "@loop.*";
desc = "TSTextobject: next start loop inner/outer";
};
# You can pass a query group to use query from `queries/<lang>/<query_group>.scm file in your runtime path.
# highlights.scm, locals.scm, textobjects.scm, folds.scm, injections.scm
"]s" = {
query = "@local.scope";
queryGroup = "locals";
desc = "TSTextobject: next start scope";
};
"]z" = {
query = "@fold";
queryGroup = "folds";
desc = "TSTextobject: next start fold";
};
};
gotoNextEnd = {
"]C" = {
query = "@class.outer";
desc = "TSTextobject: next end class outer";
};
"]F" = {
query = "@function.outer";
desc = "TSTextobject: next end function outer";
};
"]P" = {
query = "@parameter.outer";
desc = "TSTextobject: next end parameter outer";
};
};
gotoPreviousStart = {
"[c" = {
query = "@class.outer";
desc = "TSTextobject: previous start class outer";
};
"[f" = {
query = "@function.outer";
desc = "TSTextobject: previous start function outer";
};
"[p" = {
query = "@parameter.outer";
desc = "TSTextobject: previous start parameter outer";
};
};
gotoPreviousEnd = {
"[C" = {
query = "@class.outer";
desc = "TSTextobject: previous end class outer";
};
"[F" = {
query = "@function.outer";
desc = "TSTextobject: previous end funtion outer";
};
"[P" = {
query = "@parameter.outer";
desc = "TSTextobject: previous end parameter outer";
};
};
# go to either the start or the end, whichever is closer.
gotoNext = {
"]n" = {
query = "@conditional.outer";
desc = "TSTextobject: next conditional outer";
};
};
gotoPrevious = {
"[n" = {
query = "@conditional.outer";
desc = "TSTextobject: previous conditional outer";
};
};
};
select = {
enable = true;
includeSurroundingWhitespace = true;
lookahead = true;
keymaps = {
# You can use the capture groups defined in textobjects.scm
"ac" = {
query = "@class.outer";
desc = "TSTextobject: select outer class region";
};
"ic" = {
query = "@class.inner";
desc = "TSTextobject: select inner class region";
};
"af" = {
query = "@function.outer";
desc = "TSTextobject: select outer function region";
};
"if" = {
query = "@function.inner";
desc = "TSTextobject: select inner function region";
};
"ap" = {
query = "@parameter.outer";
desc = "TSTextobject: select outer parameter region";
};
"ip" = {
query = "@parameter.inner";
desc = "TSTextobject: select inner parameter region";
};
# You can also use captures from other query groups like `locals.scm`
"as" = {
query = "@local.scope";
queryGroup = "locals";
desc = "TSTextobject: select language scope";
};
};
# selectionModes = {
# "v" = [ "@parameter.outer" ]; # charwise (default)
# "V" = [ "@function.outer" ]; # linewise
# "<C-v>" = [ "@class.outer" ]; # blockwise
# };
};
swap = {
enable = true;
swapNext = {
"]]" = {
query = "@parameter.inner";
desc = "TSTextobject: swap next parameter inner";
};
};
swapPrevious = {
"[[" = {
query = "@parameter.inner";
desc = "TSTextobject: swap previous parameter inner";
};
};
};
};
ts-autotag.enable = true; # autoclose and autorename html tags using treesitter
#ts-comments.enable = true; # multiple commentstrings detected for uncomment
ts-context-commentstring.enable = true; # automatically use correct comment syntax for different parts of file
# ui
dressing.enable = true; # use Telescope for `vim.ui.input` & `vim.ui.select`
fidget.enable = true; # notifications & lsp progress
scrollview.enable = true; # scrollbar with indicators for diagnostics
web-devicons.enable = true; # file type icons
which-key.enable = true; # show shortcuts
# ...rest
auto-session.enable = true; # session manager
grug-far.enable = true; # find and replace
oil = {
enable = true; # file explorer as a buffer
settings = {
columns = [
# "type"
"icon"
# "size"
# "permissions"
# "ctime" # change timestamp
# "mtime" # last modified time
# "atime" # last access time
# "birthtime" # created time
];
delete_to_trash = true;
};
};
};
keymaps =
# :h <Cmd>
# <Cmd> does not change modes
# command is not echoed so no need for <silent>
# Neovim
[
{
action = "<Cmd>wa<CR>";
key = "<leader>w";
mode = "n";
options = {
desc = "Neovim: write all";
};
}
]
# Neovim move
++ [
# M = alt (meta) key
# https://vim.fandom.com/wiki/Moving_lines_up_or_down
# :[range]m[ove] {address}
# . = current line
# .+1 = current line + 1 (1 line down)
# .-2 = current line - 2 (1 line up)
# == = re-indent line
{
action = "<Cmd>move .-2<CR>==";
key = "<M-k>";
mode = "n";
options = {
desc = "Neovim: move current line up";
};
}
{
action = "<Cmd>move .+<CR>==";
key = "<M-j>";
mode = "n";
options = {
desc = "Neovim: move current line down";
};
}
# gi = go to last insert
{
action = "<Esc><Cmd>move .-2<CR>==gi";
key = "<M-k>";
mode = "i";
options = {
desc = "Neovim: move current line up";
};
}
{
action = "<Esc><Cmd>move .+<CR>==gi";
key = "<M-j>";
mode = "i";
options = {
desc = "Neovim: move current line down";
};
}
# '> = mark for selection end
# '< = mark for selection start
# '>+1 = one line after the last selected line (1 line down)
# '>-2 = one line after the first selected line (1 line up)
# gv = reselect the last visual block
# = = re-indent selection
# have to use : instead of <Cmd> or there is a "mark not set" error
{
action = ":move '<-2<CR>gv=gv";
key = "<M-k>";
mode = "v";
options = {
desc = "Neovim: move selected lines up";
};
}
{
action = ":move '>+1<CR>gv=gv";
key = "<M-j>";
mode = "v";
options = {
desc = "Neovim: move selected lines down";
};
}
]
# Neovim terminal
++ [
{
action = "<C-\\><C-n>"; # have to escape backslash
key = "<Esc><Esc>";
mode = "t";
options = {
desc = "Neovim: exit Terminal mode";
};
}
]
# Neovim settings
++ [
{
action = "";
key = "<leader>n";
mode = "n";
options = {
desc = "+Neovim settings";
};
}
{
action = "<Cmd>lua vim.wo.wrap = not vim.wo.wrap<CR>";
key = "<leader>nw";
mode = "n";
options = {
desc = "Neovim: toggle line wrap";
};
}
{
action = "<Cmd>lua vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())<CR>";
key = "<leader>nh";
mode = "n";
options = {
desc = "Neovim: toggle LSP inlay hint";
};
}
]
# Neovim buffers
++ [
{
action = "";
key = "<leader>b";
mode = "n";
options = {
desc = "+Neovim buffers";
};
}
{
action = "<Cmd>bn<CR>";
key = "<leader>bn";
mode = "n";
options = {
desc = "Neovim buffer: next";
};
}
{
action = "<Cmd>bp<CR>";
key = "<leader>bp";
mode = "n";
options = {
desc = "Neovim buffer: previous";
};
}
{
action = "<Cmd>b#<CR>";
key = "<leader>b#"; # also <C-6>, <C-^>
mode = "n";
options = {
desc = "Neovim buffer: alternate";
};
}
{
action = "<Cmd>bf<CR>";
key = "<leader>bf";
mode = "n";
options = {
desc = "Neovim buffer: first";
};
}
{
action = "<Cmd>br<CR>";
key = "<leader>br";
mode = "n";
options = {
desc = "Neovim buffer: rewind (same as first)";
};
}
{
action = "<Cmd>bl<CR>";
key = "<leader>bl";
mode = "n";
options = {
desc = "Neovim buffer: last";
};
}
{
action = "<Cmd>ba<CR>";
key = "<leader>ba";
mode = "n";
options = {
desc = "Neovim buffer: all (one window for each buffer)";
};
}
{
action = "<Cmd>bd<CR>";
key = "<leader>bd";
mode = "n";
options = {
desc = "Neovim buffer: delete";
};
}
]
# auto-session
++ [
{
action = "";
key = "<leader>s";
mode = "n";
options = {
desc = "+Autosession manage Neovim sessions";
};
}
{
action = "<Cmd>Autosession search<CR>";
key = "<leader>ss";
mode = "n";
options = {
desc = "Autosession: search sessions (<C-s> restore, <C-d> delete)";
};
}
]
# git
++ [
{
action = "";
key = "<leader>g";
mode = "n";
options = {
desc = "+Git actions";
};
}
# gitsigns
{
action = "<Cmd>Gitsigns toggle_current_line_blame<CR>";
key = "<leader>gb";
mode = "n";
options = {
desc = "Gitsigns: toggle line blame";
};
}
{
action = "<Cmd>Gitsigns toggle_deleted<CR>";
key = "<leader>gd";
mode = "n";
options = {
desc = "Gitsigns: toggle deleted";
};
}
# neogit
{
action = "<Cmd>Neogit<CR>";
key = "<leader>gs";
mode = "n";
options = {
desc = "Neogit: open status buffer in new tab";
};
}
]
# oil
++ [
{
action = "";
key = "<leader>o";
mode = "n";
options = {
desc = "+Oil file browser";
};
}
{
action = "<Cmd>Oil<CR>";
key = "<leader>oe";
mode = "n";
options = {
desc = "Oil: open parent directory";
};
}
]
# inc-rename
++ [
{
action = "";
key = "<leader>r";
mode = "n";
options = {
desc = "+IncRename & GrugFar incremental find and replace";
};
}
{
action = ":IncRename ";
key = "<leader>rn";
mode = "n";
options = {
desc = "IncRename: start rename";
};
}
{
action = "<Cmd>GrugFar<CR>";
key = "<leader>rg";
mode = [
"n"
"v"
];
options = {
desc = "GrugFar: open in new vertical split buffer";
};
}
]
# treesitter
++ [
{
action = "";
key = "<leader>t";
mode = "n";
options = {
desc = "+Treesitter features";
};
}
{
action = "<Cmd>TSContextToggle<CR>";
key = "<leader>tc";
mode = "n";
options = {
desc = "Treesitter: toggle sticky context";
};
}
];
extraConfigLua = # lua
''
-- from indent-blankline docs
-- rainbow-delimiters integration
-- "Setting a list of highlights for scope is currently broken" https://github.com/lukas-reineke/indent-blankline.nvim/issues/893#issuecomment-2167822070
require("ibl").setup { scope = { highlight = {
"RainbowDelimiterRed",
"RainbowDelimiterYellow",
"RainbowDelimiterBlue",
"RainbowDelimiterOrange",
"RainbowDelimiterGreen",
"RainbowDelimiterViolet",
"RainbowDelimiterCyan",
} } }
local hooks = require("ibl.hooks")
hooks.register(hooks.type.SCOPE_HIGHLIGHT, hooks.builtin.scope_highlight_from_extmark)
'';
autoCmd = [
{
callback.__raw = # lua
''
function()
vim.highlight.on_yank({ timeout = 250 })
end
'';
desc = "Highlight yanked text";
event = "TextYankPost";
group = "highlight_yanked";
}
];
autoGroups = {
highlight_yanked = {
clear = true;
};
};