Update
This commit is contained in:
parent
c401b9bd7f
commit
e83de257ad
@ -10,6 +10,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] OS Hardening with nix-mineral
|
- [ ] OS Hardening with nix-mineral
|
||||||
|
|
||||||
- [ ] Nixvim
|
- [ ] Nixvim
|
||||||
|
- [ ] Telescope Theme
|
||||||
- [ ] Markdown tab size 2
|
- [ ] Markdown tab size 2
|
||||||
- [ ] Harpoon
|
- [ ] Harpoon
|
||||||
- [ ] UFO for folding
|
- [ ] UFO for folding
|
||||||
@ -19,3 +20,4 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] <https://github.com/redyf/Neve/blob/main/config/utils/whichkey.nix>
|
- [ ] <https://github.com/redyf/Neve/blob/main/config/utils/whichkey.nix>
|
||||||
|
|
||||||
- [ ] Workflow README
|
- [ ] Workflow README
|
||||||
|
- [ ] Update config screenshots
|
||||||
|
@ -77,6 +77,9 @@ git clone https://github.com/anotherhadi/nixy ~/.config/nixos
|
|||||||
- Add your `hardware-configuration.nix` to your new host's folder
|
- Add your `hardware-configuration.nix` to your new host's folder
|
||||||
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit your hostname one and change the lines containing '# CHANGEME')
|
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit your hostname one and change the lines containing '# CHANGEME')
|
||||||
|
|
||||||
|
> [!INFO]
|
||||||
|
> I added few `# CHANGEME` comments in the files to help you find what to change
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> When you add new files, don't forget to run `git add .` to add them to the git repository
|
> When you add new files, don't forget to run `git add .` to add them to the git repository
|
||||||
|
|
||||||
|
@ -40,9 +40,14 @@
|
|||||||
mode = "n";
|
mode = "n";
|
||||||
group = "+windows";
|
group = "+windows";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
__unkeyed-1 = "<leader>h";
|
||||||
|
mode = "n";
|
||||||
|
group = "+harpoon";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
win = {
|
win = {
|
||||||
border = "none";
|
border = "rounded";
|
||||||
wo.winblend = 0;
|
wo.winblend = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -34,6 +34,24 @@
|
|||||||
highlight.enable = true;
|
highlight.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
# TODO: Add not working
|
||||||
|
harpoon = {
|
||||||
|
enable = true;
|
||||||
|
enableTelescope = true;
|
||||||
|
keymapsSilent = true;
|
||||||
|
keymaps = {
|
||||||
|
addFile = "<leader>ha";
|
||||||
|
toggleQuickMenu = "<leader>hu";
|
||||||
|
navNext = "<leader>hl";
|
||||||
|
navPrev = "<leader>hh";
|
||||||
|
navFile = {
|
||||||
|
"1" = "<leader>h1";
|
||||||
|
"2" = "<leader>h2";
|
||||||
|
"3" = "<leader>h3";
|
||||||
|
"4" = "<leader>h4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
treesitter-context.enable = true;
|
treesitter-context.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -68,7 +68,7 @@
|
|||||||
"XDG_SESSION_TYPE,wayland"
|
"XDG_SESSION_TYPE,wayland"
|
||||||
"SDL_VIDEODRIVER,wayland"
|
"SDL_VIDEODRIVER,wayland"
|
||||||
"CLUTTER_BACKEND,wayland"
|
"CLUTTER_BACKEND,wayland"
|
||||||
"AQ_DRM_DEVICES,/dev/dri/card2" # FIXME: Why the fuck this is needed
|
"AQ_DRM_DEVICES,/dev/dri/card2" # CHANGEME: Related to the GPU
|
||||||
];
|
];
|
||||||
|
|
||||||
cursor = {
|
cursor = {
|
||||||
|
@ -100,7 +100,9 @@
|
|||||||
"theme.bar.buttons.workspaces.active": "#${config.lib.stylix.colors.base0D}",
|
"theme.bar.buttons.workspaces.active": "#${config.lib.stylix.colors.base0D}",
|
||||||
"theme.bar.buttons.workspaces.available": "#${config.lib.stylix.colors.base00}",
|
"theme.bar.buttons.workspaces.available": "#${config.lib.stylix.colors.base00}",
|
||||||
|
|
||||||
"theme.bar.margin_top": "1.0em",
|
"theme.bar.margin_top": "${
|
||||||
|
toString (config.var.theme.gaps-in * 2)
|
||||||
|
}px",
|
||||||
"theme.bar.margin_sides": "${toString config.var.theme.gaps-out}px",
|
"theme.bar.margin_sides": "${toString config.var.theme.gaps-out}px",
|
||||||
"theme.bar.margin_bottom": "0px",
|
"theme.bar.margin_bottom": "0px",
|
||||||
"theme.bar.border_radius": "${toString config.var.theme.rounding}px",
|
"theme.bar.border_radius": "${toString config.var.theme.rounding}px",
|
||||||
|
Loading…
Reference in New Issue
Block a user