mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: switch to starship and rose-pine theming
This commit is contained in:
parent
f4afbcda4e
commit
23ac5c090a
2 changed files with 26 additions and 12 deletions
|
@ -1,4 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
inherit (builtins) fromTOML readFile fetchurl;
|
||||||
|
rose-pine-starship = fromTOML (
|
||||||
|
readFile (fetchurl {
|
||||||
|
url = "https://raw.githubusercontent.com/rose-pine/starship/f8b3cdc0aefecae9e7e5999ecad97d4701a6e602/rose-pine.toml";
|
||||||
|
sha256 = "sha256:1ywk5xjl3vhyyc7iq89h01ry3nzs78spp5zf495fh0m0wnalrxvq";
|
||||||
|
})
|
||||||
|
);
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.file.".essentials" = {
|
home.file.".essentials" = {
|
||||||
source = ./essentials;
|
source = ./essentials;
|
||||||
|
@ -69,12 +78,20 @@
|
||||||
extensions = [ pkgs.github-copilot-cli ];
|
extensions = [ pkgs.github-copilot-cli ];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.oh-my-posh = {
|
# programs.oh-my-posh = {
|
||||||
|
# enable = true;
|
||||||
|
# # enableZshIntegration = true;
|
||||||
|
# enableFishIntegration = true;
|
||||||
|
# enableBashIntegration = true;
|
||||||
|
# useTheme = "gruvbox";
|
||||||
|
# };
|
||||||
|
|
||||||
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# enableZshIntegration = true;
|
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
useTheme = "gruvbox";
|
enableNushellIntegration = true;
|
||||||
|
settings = rose-pine-starship;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
|
@ -87,9 +104,9 @@
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ls = "eza -l --icons=auto";
|
ls = "eza -l --icons=auto";
|
||||||
};
|
};
|
||||||
shellInit = ''
|
# shellInit = ''
|
||||||
oh-my-posh disable notice
|
# oh-my-posh disable notice
|
||||||
'';
|
# '';
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
fish_vi_key_bindings
|
fish_vi_key_bindings
|
||||||
set -g fish_greeting
|
set -g fish_greeting
|
||||||
|
|
|
@ -1,12 +1,7 @@
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
{
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
themeFile = "tokyo_night_night";
|
themeFile = "rose-pine";
|
||||||
font.name = "CaskaydiaCove Nerd Font";
|
font.name = "CaskaydiaCove Nerd Font";
|
||||||
shellIntegration.enableFishIntegration = true;
|
shellIntegration.enableFishIntegration = true;
|
||||||
shellIntegration.enableBashIntegration = true;
|
shellIntegration.enableBashIntegration = true;
|
||||||
|
@ -19,6 +14,8 @@
|
||||||
allow_remote_control = "socket-only";
|
allow_remote_control = "socket-only";
|
||||||
listen_on = "unix:/tmp/kitty";
|
listen_on = "unix:/tmp/kitty";
|
||||||
scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - "'';
|
scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - "'';
|
||||||
|
cursor = "#c0caf5";
|
||||||
|
cursor_text_color = "#1a1b26";
|
||||||
};
|
};
|
||||||
keybindings = {
|
keybindings = {
|
||||||
"kitty_mod+h" = "show_scrollback";
|
"kitty_mod+h" = "show_scrollback";
|
||||||
|
|
Loading…
Reference in a new issue