replace neovim with helix
This commit is contained in:
parent
75a38fab65
commit
303e982a8e
3 changed files with 12 additions and 9 deletions
|
@ -1,12 +1,11 @@
|
||||||
# Configures programs that primarily run via the command line
|
# Configures programs that primarily run via the command line
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./fish.nix # fish shell configuration
|
./fish.nix # fish shell configuration
|
||||||
./neovim.nix # neovim configuration, my "escape" editor
|
|
||||||
./lazygit.nix # my preferred git porcellain
|
./lazygit.nix # my preferred git porcellain
|
||||||
./direnv.nix # smart cding
|
./direnv.nix # smart cding
|
||||||
./mise.nix # version management for tools
|
./mise.nix # version management for tools
|
||||||
|
./helix.nix # helix configuration, my CLI editor
|
||||||
];
|
];
|
||||||
|
|
||||||
# stuff that doesn't fit into any other files
|
# stuff that doesn't fit into any other files
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
functions = {
|
functions = { setpath = "test -e $argv[1]; and fish_add_path $argv[1]"; };
|
||||||
setpath = "test -e $argv[1]; and fish_add_path $argv[1]";
|
|
||||||
};
|
|
||||||
|
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
if test -z "$XDG_RUNTIME_DIR"
|
if test -z "$XDG_RUNTIME_DIR"
|
||||||
|
@ -25,7 +22,7 @@
|
||||||
setpath ~/.bun/bin
|
setpath ~/.bun/bin
|
||||||
setpath ~/Projects/Checkouts/arcanist/bin
|
setpath ~/Projects/Checkouts/arcanist/bin
|
||||||
|
|
||||||
set -x EDITOR nvim
|
set -x EDITOR hx
|
||||||
set -x USER lu
|
set -x USER lu
|
||||||
set -x SHELL (which fish)
|
set -x SHELL (which fish)
|
||||||
set -x TERM xterm-256color
|
set -x TERM xterm-256color
|
||||||
|
@ -96,6 +93,7 @@
|
||||||
jbm = "jj branch move";
|
jbm = "jj branch move";
|
||||||
jgp = "jj git push";
|
jgp = "jj git push";
|
||||||
jdiff = "jj diff";
|
jdiff = "jj diff";
|
||||||
|
jnew = "jj new";
|
||||||
|
|
||||||
# nix aliases
|
# nix aliases
|
||||||
n = "nix";
|
n = "nix";
|
||||||
|
|
6
home/features/cli/helix.nix
Normal file
6
home/features/cli/helix.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs.helix = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue