[fix] *.nix: statix checks

This commit is contained in:
Jalil David Salamé Messina 2024-05-17 18:50:01 +02:00
parent 15a60141ad
commit c19ceb54b7
Signed by: jalil
GPG key ID: F016B9E770737A0B
18 changed files with 728 additions and 626 deletions

View file

@ -1,7 +1,9 @@
{
autoGroups."highlightOnYank" = {};
autoGroups."lspConfig" = {};
autoGroups."restoreCursorPosition" = {};
autoGroups = {
"highlightOnYank" = {};
"lspConfig" = {};
"restoreCursorPosition" = {};
};
autoCmd = [
{
group = "highlightOnYank";

View file

@ -20,12 +20,15 @@ in {
package = pkgs.neovim;
globals.mapleader = " ";
# Appearance
colorschemes = {
gruvbox.enable = true;
gruvbox.settings.bold = true;
gruvbox.settings.transparent_mode = true;
gruvbox.settings.terminal_colors = true;
colorschemes.gruvbox = {
enable = true;
settings = {
bold = true;
transparent_mode = true;
terminal_colors = true;
};
};
opts = {
number = true;
relativenumber = true;