Skip to content

Commit

Permalink
Fix x1 more
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Jan 25, 2024
1 parent e6f6875 commit fc391bd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
11 changes: 4 additions & 7 deletions home-modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
termguicolors = true;
cursorline = true;
signcolumn = "yes";
colorcolumn = "81";
backup = false;
swapfile = false;
undofile = true;
Expand All @@ -43,11 +42,6 @@
bg = "none";
fg = "#eaeaea";
};
CursorLine = {
bg = "none";
underline = true;
};
CursorLineNr.link = "CursorLine";
VirtColumn.fg = "#000000";
SignColumn.bg = "none";
};
Expand Down Expand Up @@ -135,7 +129,7 @@
enable = true;
userDefaultOptions.names = false;
};
# fidget.enable = true;
fidget.enable = true;
lightline.enable = true;
indent-blankline.enable = true;
gitgutter.enable = true;
Expand Down Expand Up @@ -282,6 +276,7 @@

extraPlugins = with pkgs.vimPlugins; [
vim-wakatime
smartcolumn-nvim
];

extraConfigLua = ''
Expand All @@ -291,6 +286,8 @@
'confirm_done',
cmp_autopairs.on_confirm_done()
)
require("smartcolumn").setup()
'';
};
}
1 change: 1 addition & 0 deletions home-modules/picom.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
notification.redir-ignore = true;
notify.redir-ignore = true;
};
extraArgs = ["--no-frame-pacing"];
};
}
4 changes: 2 additions & 2 deletions home-modules/xmonad/xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) =
-- Swap the focused window with the previous window
(modm .|. shiftMask, xK_k) ~> windows W.swapUp,
-- Shrink the master area
(modm, xK_h) ~> sendMessage Shrink,
(modm .|. shiftMask, xK_h) ~> sendMessage Shrink,
-- Expand the master area
(modm, xK_l) ~> sendMessage Expand,
(modm .|. shiftMask, xK_l) ~> sendMessage Expand,
-- Push window back into tiling
(modm, xK_t) ~> withFocused $ windows . W.sink,
-- Increment the number of windows in the master area
Expand Down
6 changes: 6 additions & 0 deletions hosts/x1/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ in {
lua
nodejs
statix
(haskellPackages.ghcWithPackages (hpkgs:
with hpkgs; [
xmobar
xmonad
xmonad-contrib
]))

# apps
spotify
Expand Down
1 change: 0 additions & 1 deletion hosts/x1/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
easyeffects.enable = true;
batsignal.enable = true;
udiskie.enable = true;
picom.backend = lib.mkForce "xrender";
};
};
}

0 comments on commit fc391bd

Please sign in to comment.