stuf
This commit is contained in:
parent
315dafd51c
commit
88ae1ea503
27
flake.lock
27
flake.lock
@ -196,17 +196,19 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1631926766,
|
"lastModified": 1632450064,
|
||||||
"narHash": "sha256-aDukfKZ8+Ss8KsHPFlUlKc+fMDGWvvYxhDfzPYQ/Ti0=",
|
"narHash": "sha256-aeI1iaCYd35MTgQcCELVFk05XXmhwpXP81mofVZgmjU=",
|
||||||
"owner": "helix-editor",
|
"ref": "master",
|
||||||
"repo": "helix",
|
"rev": "df55eaae69d0388de26448e82f9ded483fca2f44",
|
||||||
"rev": "ae4d37de28abab23651aa6a239e6d9d90674f039",
|
"revCount": 1488,
|
||||||
"type": "github"
|
"submodules": true,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/helix-editor/helix.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "helix-editor",
|
"submodules": true,
|
||||||
"repo": "helix",
|
"type": "git",
|
||||||
"type": "github"
|
"url": "https://github.com/helix-editor/helix.git"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"home": {
|
"home": {
|
||||||
@ -329,6 +331,7 @@
|
|||||||
"inputs": {
|
"inputs": {
|
||||||
"devshell": "devshell_2",
|
"devshell": "devshell_2",
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
"helix",
|
||||||
"nixpkgs"
|
"nixpkgs"
|
||||||
],
|
],
|
||||||
"rustOverlay": "rustOverlay"
|
"rustOverlay": "rustOverlay"
|
||||||
@ -450,11 +453,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1631531304,
|
"lastModified": 1632521018,
|
||||||
"narHash": "sha256-hlJ0FYaxUGpFqAuhB+Fde7ydxJQXV3NIwKQ8rW85gc8=",
|
"narHash": "sha256-worJcyb+s+bUFCpMQx12W8ZLUlVqArWaN9ijxFzOiV8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "rnix-lsp",
|
"repo": "rnix-lsp",
|
||||||
"rev": "ab9c26a903846fc6712b811bdb32a2539ed3a42d",
|
"rev": "f383249f3c6ea24164be5cddbe269626cd3d981e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -43,7 +43,9 @@
|
|||||||
inputs.utils.follows = "flake-utils";
|
inputs.utils.follows = "flake-utils";
|
||||||
};
|
};
|
||||||
helix = {
|
helix = {
|
||||||
url = "github:helix-editor/helix";
|
url = "https://github.com/helix-editor/helix.git";
|
||||||
|
type = "git";
|
||||||
|
submodules = true;
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
nixosPersistence.url = "github:nix-community/impermanence";
|
nixosPersistence.url = "github:nix-community/impermanence";
|
||||||
|
@ -21,8 +21,7 @@ channels: final: prev: {
|
|||||||
gh
|
gh
|
||||||
chromium-unwrapped
|
chromium-unwrapped
|
||||||
chromium
|
chromium
|
||||||
sublime4
|
sublime4;
|
||||||
helix;
|
|
||||||
|
|
||||||
libnotify-latest = channels.latest.libnotify;
|
libnotify-latest = channels.latest.libnotify;
|
||||||
|
|
||||||
|
@ -694,10 +694,6 @@ in
|
|||||||
"variable" = { fg = "#${colorScheme.bright.blue}", modifiers = ['italic'] }
|
"variable" = { fg = "#${colorScheme.bright.blue}", modifiers = ['italic'] }
|
||||||
"variable.builtin" = { fg = "#${colorScheme.bright.blue}", modifiers = ['italic'] }
|
"variable.builtin" = { fg = "#${colorScheme.bright.blue}", modifiers = ['italic'] }
|
||||||
"variable.parameter" = { fg = "#${colorScheme.bright.red}", modifiers = ['italic'] }
|
"variable.parameter" = { fg = "#${colorScheme.bright.red}", modifiers = ['italic'] }
|
||||||
"info" = { fg = "#${colorScheme.normal.blue}", modifiers = ['bold'] }
|
|
||||||
"hint" = { fg = "#${colorScheme.bright.green}", modifiers = ['bold'] }
|
|
||||||
"warning" = { fg = "#${colorScheme.normal.yellow}", modifiers = ['bold'] }
|
|
||||||
"error" = { fg = "#${colorScheme.bright.red}", modifiers = ['bold'] }
|
|
||||||
"ui.menu.selected" = { fg = "#${bgColor}", bg = "#${acColor}" }
|
"ui.menu.selected" = { fg = "#${bgColor}", bg = "#${acColor}" }
|
||||||
"ui.background" = { fg = "#${fgColor}", bg = "#${bgColor}" }
|
"ui.background" = { fg = "#${fgColor}", bg = "#${bgColor}" }
|
||||||
"ui.help" = { bg = "#${colorScheme.normal.black}" }
|
"ui.help" = { bg = "#${colorScheme.normal.black}" }
|
||||||
@ -710,8 +706,12 @@ in
|
|||||||
"ui.text" = { fg = "#${fgColor}", bg = "#${bgColor}" }
|
"ui.text" = { fg = "#${fgColor}", bg = "#${bgColor}" }
|
||||||
"ui.text.focus" = { fg = "#${fgColor}", bg = "#${bgColor}", modifiers = ['bold'] }
|
"ui.text.focus" = { fg = "#${fgColor}", bg = "#${bgColor}", modifiers = ['bold'] }
|
||||||
"ui.window" = { bg = "#${bgColor}" }
|
"ui.window" = { bg = "#${bgColor}" }
|
||||||
"ui.cursor" = { modifiers = ["reversed"] }
|
"ui.cursor.primary" = { fg = "#${fgColor}", modifiers = ["reversed"] }
|
||||||
"ui.cursor.select" = { modifiers = ["reversed"] }
|
|
||||||
|
"info" = { fg = "#${colorScheme.normal.blue}", modifiers = ['bold'] }
|
||||||
|
"hint" = { fg = "#${colorScheme.bright.green}", modifiers = ['bold'] }
|
||||||
|
"warning" = { fg = "#${colorScheme.normal.yellow}", modifiers = ['bold'] }
|
||||||
|
"error" = { fg = "#${colorScheme.bright.red}", modifiers = ['bold'] }
|
||||||
'';
|
'';
|
||||||
"helix/config.toml".text = ''
|
"helix/config.toml".text = ''
|
||||||
theme = "mytheme"
|
theme = "mytheme"
|
||||||
|
Loading…
Reference in New Issue
Block a user