This commit is contained in:
Hadi 2024-10-08 10:39:10 +02:00
parent 741a6f97ae
commit c401b9bd7f
6 changed files with 35 additions and 3 deletions

View File

@ -7,6 +7,8 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Hyprland - [ ] Hyprland
- [ ] Fix screenshots (screenshot region's border shows up in the screenshot, hyprshot jq error?) and add in the scripts doc - [ ] Fix screenshots (screenshot region's border shows up in the screenshot, hyprshot jq error?) and add in the scripts doc
- [ ] OS Hardening with nix-mineral
- [ ] Nixvim - [ ] Nixvim
- [ ] Markdown tab size 2 - [ ] Markdown tab size 2
- [ ] Harpoon - [ ] Harpoon

View File

@ -66,6 +66,12 @@
options.desc = "Neotree"; options.desc = "Neotree";
} }
{
key = "s";
action = "<cmd>lua require('flash').jump()<cr>";
options.desc = "Flash";
}
{ {
key = "<C-h>"; key = "<C-h>";
action = "<cmd>TmuxNavigateLeft<cr>"; action = "<cmd>TmuxNavigateLeft<cr>";

View File

@ -6,7 +6,13 @@
plugins = { plugins = {
copilot-vim.enable = true; copilot-vim.enable = true;
flash.enable = true; flash.enable = true;
image.enable = true; image = {
enable = true;
integrations.markdown = {
clearInInsertMode = true;
onlyRenderImageAtCursor = true;
};
};
tmux-navigator.enable = true; tmux-navigator.enable = true;
comment.enable = true; comment.enable = true;
nvim-autopairs.enable = true; nvim-autopairs.enable = true;

View File

@ -19,8 +19,11 @@
}; };
git_branch = { git_branch = {
format = "[$branch]($style)"; symbol = "[](#${config.lib.stylix.colors.base01}) ";
style = "bright-black"; style =
"fg:#${config.lib.stylix.colors.base0D} bg:#${config.lib.stylix.colors.base01}";
format =
"on [$symbol$branch]($style)[](#${config.lib.stylix.colors.base01}) ";
}; };
git_status = { git_status = {

View File

@ -17,6 +17,8 @@
"$mod, right, movefocus, r" # Move focus Right "$mod, right, movefocus, r" # Move focus Right
"$mod, up, movefocus, u" # Move focus Up "$mod, up, movefocus, u" # Move focus Up
"$mod, down, movefocus, d" # Move focus Down "$mod, down, movefocus, d" # Move focus Down
"$shiftMod, up, focusmonitor, -1" # Focus previous monitor
"$shiftMod, down, focusmonitor, 1" # Focus next monitor
"$shiftMod, left, layoutmsg, addmaster" # Add to master "$shiftMod, left, layoutmsg, addmaster" # Add to master
"$shiftMod, right, layoutmsg, removemaster" # Remove from master "$shiftMod, right, layoutmsg, removemaster" # Remove from master

View File

@ -1,5 +1,6 @@
{ pkgs, ... }: { { pkgs, ... }: {
boot = { boot = {
bootspec.enable = true;
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot = { systemd-boot = {
@ -10,5 +11,17 @@
tmp.cleanOnBoot = true; tmp.cleanOnBoot = true;
kernelPackages = kernelPackages =
pkgs.linuxPackages_latest; # _zen, _hardened, _rt, _rt_latest, etc. pkgs.linuxPackages_latest; # _zen, _hardened, _rt, _rt_latest, etc.
# Silent boot
kernelParams = [
"quiet"
"splash"
"vga=current"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
consoleLogLevel = 0;
initrd.verbose = false;
}; };
} }