mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Make Helix configuration better
This commit is contained in:
parent
e9d65bf39a
commit
7963427a31
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,10 @@
|
|||
{ pkgs, homeConfiguration, imports, enabled, ... }:
|
||||
{ pkgs, homeConfiguration, systemPackages, imports, enabled, ... }:
|
||||
|
||||
(with pkgs; systemPackages [
|
||||
xclip
|
||||
])
|
||||
|
||||
//
|
||||
|
||||
(homeConfiguration "nixos" {
|
||||
programs.nushell = {
|
||||
|
@ -13,9 +19,13 @@
|
|||
settings.editor = {
|
||||
color-modes = true;
|
||||
cursor-shape.normal = "bar";
|
||||
cursor-shape.insert = "bar";
|
||||
cursorline = true;
|
||||
file-picker.hidden = false;
|
||||
line-number = "relative";
|
||||
mode.normal = "NORMAL";
|
||||
mode.insert = "INSERT";
|
||||
mode.select = "SELECT";
|
||||
shell = [
|
||||
"nu"
|
||||
"-c"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue