feat: switch to fish as an interactive shell
Now that it is written in Rust I am interested!
This commit is contained in:
parent
a7195317a1
commit
615cf82b52
5 changed files with 115 additions and 137 deletions
|
@ -58,6 +58,11 @@ in
|
||||||
git = true;
|
git = true;
|
||||||
icons = "auto";
|
icons = "auto";
|
||||||
};
|
};
|
||||||
|
# Shell
|
||||||
|
fish = {
|
||||||
|
enable = true;
|
||||||
|
preferAbbrs = true; # when defining an alias, prefer instead to define an abbreviation
|
||||||
|
};
|
||||||
# GnuPG
|
# GnuPG
|
||||||
gpg = {
|
gpg = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -75,16 +80,6 @@ in
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
# cd replacement
|
# cd replacement
|
||||||
zoxide.enable = true;
|
zoxide.enable = true;
|
||||||
# Shell
|
|
||||||
zsh = {
|
|
||||||
enable = true;
|
|
||||||
autosuggestion.enable = true;
|
|
||||||
enableCompletion = true;
|
|
||||||
autocd = true;
|
|
||||||
dotDir = ".config/zsh";
|
|
||||||
history.path = "${config.xdg.dataHome}/zsh/zsh_history";
|
|
||||||
syntaxHighlighting.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -129,11 +129,11 @@ in
|
||||||
# PDF reader
|
# PDF reader
|
||||||
zathura.enable = true;
|
zathura.enable = true;
|
||||||
# Auto start sway
|
# Auto start sway
|
||||||
zsh.loginExtra =
|
fish.loginShellInit =
|
||||||
lib.optionalString cfg.sway.autostart # sh
|
lib.optionalString cfg.sway.autostart # fish
|
||||||
''
|
''
|
||||||
# Start Sway on login to TTY 1
|
# Start Sway on login to TTY 1
|
||||||
if [ "$TTY" = /dev/tty1 ]; then
|
if [ $TTY = /dev/tty1 ]; then
|
||||||
exec sway
|
exec sway
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -35,6 +35,17 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
# Launch fish if shell is interactive (from https://wiki.nixos.org/wiki/Fish)
|
||||||
|
bash.interactiveShellInit = # bash
|
||||||
|
''
|
||||||
|
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
|
||||||
|
then
|
||||||
|
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
|
||||||
|
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
# Default shell
|
||||||
|
fish.enable = true;
|
||||||
# Shell prompt
|
# Shell prompt
|
||||||
starship = {
|
starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -58,8 +69,6 @@ in
|
||||||
(import ./starship-shorter-text.nix)
|
(import ./starship-shorter-text.nix)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# Default shell
|
|
||||||
zsh.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc = keysFromGithub;
|
environment.etc = keysFromGithub;
|
||||||
|
@ -74,7 +83,6 @@ in
|
||||||
builtins.attrNames keysFromGithub
|
builtins.attrNames keysFromGithub
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
users.defaultUserShell = pkgs.zsh;
|
|
||||||
# Open ports for spotifyd
|
# Open ports for spotifyd
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
allowedUDPPorts = [ 5353 ];
|
allowedUDPPorts = [ 5353 ];
|
||||||
|
|
|
@ -21,6 +21,7 @@ let
|
||||||
"typos_lsp"
|
"typos_lsp"
|
||||||
# "typst_lsp" # Not using it
|
# "typst_lsp" # Not using it
|
||||||
"zls"
|
"zls"
|
||||||
|
"fish_lsp"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -95,6 +96,7 @@ in
|
||||||
pkgs.stylua
|
pkgs.stylua
|
||||||
pkgs.taplo
|
pkgs.taplo
|
||||||
pkgs.yamlfmt
|
pkgs.yamlfmt
|
||||||
|
pkgs.fish
|
||||||
];
|
];
|
||||||
plugins.conform-nvim = {
|
plugins.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -111,6 +113,7 @@ in
|
||||||
toml = [ "taplo" ];
|
toml = [ "taplo" ];
|
||||||
yaml = [ "yamlfmt" ];
|
yaml = [ "yamlfmt" ];
|
||||||
zig = [ "zigfmt" ];
|
zig = [ "zigfmt" ];
|
||||||
|
fish = [ "fish_indent" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -127,7 +130,6 @@ in
|
||||||
# latex = [ "chktex" ]; # Not in use
|
# latex = [ "chktex" ]; # Not in use
|
||||||
nix = [ "statix" ];
|
nix = [ "statix" ];
|
||||||
sh = [ "dash" ];
|
sh = [ "dash" ];
|
||||||
zsh = [ "zsh" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,11 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config.plugins = {
|
config.plugins = {
|
||||||
cmp = {
|
cmp =
|
||||||
|
let
|
||||||
|
srcWithIndex = groupIndex: name: { inherit name groupIndex; };
|
||||||
|
in
|
||||||
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
cmdline = {
|
cmdline = {
|
||||||
"/" = {
|
"/" = {
|
||||||
|
@ -23,9 +27,7 @@ in
|
||||||
mapping =
|
mapping =
|
||||||
mkRaw
|
mkRaw
|
||||||
# lua
|
# lua
|
||||||
''
|
"cmp.mapping.preset.cmdline()";
|
||||||
cmp.mapping.preset.cmdline()
|
|
||||||
'';
|
|
||||||
sources = [
|
sources = [
|
||||||
{ name = "path"; }
|
{ name = "path"; }
|
||||||
{ name = "cmdline"; }
|
{ name = "cmdline"; }
|
||||||
|
@ -36,55 +38,25 @@ in
|
||||||
# Snippets
|
# Snippets
|
||||||
snippet.expand =
|
snippet.expand =
|
||||||
# lua
|
# lua
|
||||||
''
|
"function(args) require('luasnip').lsp_expand(args.body) end";
|
||||||
function(args) require('luasnip').lsp_expand(args.body) end
|
|
||||||
'';
|
|
||||||
# Completion Sources
|
# Completion Sources
|
||||||
sources = [
|
sources = [
|
||||||
{
|
# very specific (not noisy)
|
||||||
name = "buffer";
|
(srcWithIndex 1 "calc")
|
||||||
groupIndex = 3;
|
(srcWithIndex 1 "crates")
|
||||||
}
|
(srcWithIndex 1 "fish")
|
||||||
{
|
(srcWithIndex 1 "luasnip")
|
||||||
name = "calc";
|
(srcWithIndex 1 "nvim_lsp")
|
||||||
groupIndex = 2;
|
# Generally ok
|
||||||
}
|
(srcWithIndex 2 "conventionalcommits")
|
||||||
{
|
(srcWithIndex 2 "nvim_lsp_document_symbol")
|
||||||
name = "conventionalcommits";
|
(srcWithIndex 2 "nvim_lsp_signature_help")
|
||||||
groupIndex = 1;
|
# Noisy
|
||||||
}
|
(srcWithIndex 2 "path")
|
||||||
{
|
(srcWithIndex 3 "spell")
|
||||||
name = "crates";
|
(srcWithIndex 3 "treesitter")
|
||||||
groupIndex = 1;
|
# Very noisy
|
||||||
}
|
(srcWithIndex 4 "buffer")
|
||||||
{
|
|
||||||
name = "luasnip";
|
|
||||||
groupIndex = 1;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "nvim_lsp";
|
|
||||||
groupIndex = 1;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "nvim_lsp_document_symbol";
|
|
||||||
groupIndex = 1;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "nvim_lsp_signature_help";
|
|
||||||
groupIndex = 1;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "path";
|
|
||||||
groupIndex = 2;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "spell";
|
|
||||||
groupIndex = 2;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "treesitter";
|
|
||||||
groupIndex = 2;
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
mapping =
|
mapping =
|
||||||
mkRaw
|
mkRaw
|
||||||
|
@ -127,6 +99,7 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
cmp-fish.enable = true;
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
lualine = {
|
lualine = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue