Compare commits

..

No commits in common. "c55400247b62ddcced2f8154bf9e08eb1e0bf16e" and "f7e1b1c86c5325f615c5dd37ca1c4b3ef0ec9654" have entirely different histories.

3 changed files with 58 additions and 43 deletions

View File

@ -3,7 +3,6 @@
imports = [
./modules/nethack.nix
./modules/firefox.nix
./modules/neovim.nix
];
programs = {
@ -29,6 +28,48 @@
};
};
nixvim = {
enable = true;
colorschemes.nightfox = {
enable = true;
flavor = "nordfox";
};
plugins = {
guess-indent = {
enable = true;
};
copilot-lua = {
enable = true;
suggestion.autoTrigger = true;
suggestion.keymap = {
accept = "<M-Right>";
acceptLine = "<M-l>";
acceptWord = "<M-w>";
};
};
};
keymaps = [
{
mode = "n";
key = ";";
action = ":";
}
{
mode = "n";
key = "<Esc>";
action = "<Cmd>nohlsearch<CR>";
options = {
silent = true;
};
}
];
};
mpv = {
enable = true;
};

View File

@ -4,6 +4,21 @@
enable = true;
profiles.default = {
containersForce = true;
containers = {
social = {
color = "turquoise";
icon = "fence";
id = 1;
};
shopping = {
color = "orange";
icon = "cart";
id = 2;
};
};
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
private-relay
@ -47,6 +62,7 @@
"browser.tabs.inTitlebar" = 0;
"services.sync.engine.addons" = false;
"services.sync.username" = "xezo360hye@gmail.com";
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"extensions.autoDisableScopes" = 0;

View File

@ -1,42 +0,0 @@
{
programs.nixvim = {
enable = true;
colorschemes.nightfox = {
enable = true;
flavor = "nordfox";
};
plugins = {
guess-indent = {
enable = true;
};
copilot-lua = {
enable = true;
suggestion.autoTrigger = true;
suggestion.keymap = {
accept = "<M-a>";
acceptLine = "<M-l>";
acceptWord = "<M-w>";
};
};
};
keymaps = [
{
mode = "n";
key = ";";
action = ":";
}
{
mode = "n";
key = "<Esc>";
action = "<Cmd>nohlsearch<CR>";
options = {
silent = true;
};
}
];
};
}