Initial commit
This commit is contained in:
commit
1518f7007b
39 changed files with 1779 additions and 0 deletions
28
m/home/helix/default.nix
Normal file
28
m/home/helix/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
sonokai = import themes/sonokai;
|
||||
langs = (import ./langs) pkgs;
|
||||
in
|
||||
{
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
theme = "sonokai-andromeda";
|
||||
editor.cursor-shape = {
|
||||
normal = "block";
|
||||
insert = "bar";
|
||||
select = "underline";
|
||||
};
|
||||
};
|
||||
|
||||
languages = {
|
||||
language-server.rust-analyzer.config = {
|
||||
rust.analyzerTargetDir = true;
|
||||
};
|
||||
};
|
||||
themes = {
|
||||
sonokai-andromeda = sonokai "andromeda";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue