neovim
This commit is contained in:
parent
ac83e30d07
commit
eb6320bd0b
|
@ -26,6 +26,7 @@
|
|||
inputs.stylix.nixosModules.stylix
|
||||
];
|
||||
};
|
||||
|
||||
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
|
|
|
@ -9,9 +9,6 @@ home.username = "joy";
|
|||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
qt.enable = true;
|
||||
qt.platformTheme.name = "gtk";
|
||||
qt.style.name = "adwaita-dark";
|
||||
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"text/plain" = ["neovide.desktop"];
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
cmdheight = 0;
|
||||
wrap = true;
|
||||
termguicolors = true;
|
||||
showmode = false;
|
||||
# showmode = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./fonts
|
||||
# ./fonts
|
||||
./sound
|
||||
./vm
|
||||
./packages
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
{
|
||||
fonts.packages = with pkgs; [
|
||||
font-awesome
|
||||
(nerdfonts.override { fonts = [ "FiraCode" "JetBrainsMono" "Iosevka" ]; })
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
}
|
||||
|
|
|
@ -56,5 +56,6 @@
|
|||
yt-dlp
|
||||
distrobox
|
||||
vim
|
||||
font-awesome
|
||||
];
|
||||
}
|
||||
|
|
|
@ -22,11 +22,17 @@
|
|||
base0F = "d65d0e";
|
||||
};
|
||||
image = ./wallpaper.png;
|
||||
fonts.sizes.terminal = 14;
|
||||
targets.chromium.enable = false;
|
||||
cursor.name = "Bibata-Modern-Ice";
|
||||
cursor.package = pkgs.bibata-cursors;
|
||||
cursor.size = 24;
|
||||
fonts.sizes.desktop = 12;
|
||||
fonts = {
|
||||
sizes = {
|
||||
applications = 12;
|
||||
terminal = 14;
|
||||
desktop = 12;
|
||||
popups = 12;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue