changes
This commit is contained in:
parent
916f497b84
commit
7aed32eea7
15 changed files with 210 additions and 154 deletions
|
|
@ -25,8 +25,6 @@ in {
|
|||
bold_font ${fonts.mono} Bold Italic
|
||||
italic_font ${fonts.mono} Italic
|
||||
bold_italic_font ${fonts.mono} Bold Italic
|
||||
|
||||
shell ${lib.getExe pkgs.nushell}
|
||||
'';
|
||||
|
||||
catppuccin.enable = true;
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ in {
|
|||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = config.programs.zsh.enable;
|
||||
enableFishIntegration = config.programs.fish.enable;
|
||||
enableNushellIntegration = config.programs.nushell.enable;
|
||||
settings = {
|
||||
add_newline = false;
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ in {
|
|||
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
shell = "${lib.getExe pkgs.nushell}";
|
||||
shell = "${lib.getExe pkgs.fish}";
|
||||
historyLimit = 100000;
|
||||
plugins = with pkgs; [
|
||||
tmuxPlugins.sensible
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ with pkgs; {
|
|||
ls = "${getExe eza} -h --git --icons --color=auto --group-directories-first -s extension";
|
||||
tree = "${getExe eza} --tree --icons --tree";
|
||||
kys = "shutdown now";
|
||||
w = ''| nvim -c "setlocal buftype=nofile bufhidden=wipe" -c "nnoremap <buffer> q :q!<CR>" -'';
|
||||
# w = ''| nvim -c "setlocal buftype=nofile bufhidden=wipe" -c "nnoremap <buffer> q :q!<CR>" -'';
|
||||
lv = "nvim -c \"normal '\''0\"";
|
||||
pf = ''
|
||||
fzf --bind ctrl-y:preview-up,ctrl-e:preview-down \
|
||||
|
|
@ -38,7 +38,6 @@ with pkgs; {
|
|||
--bind ctrl-k:up,ctrl-j:down \
|
||||
--preview='bat --style=numbers --color=always --line-range :100 {}'
|
||||
'';
|
||||
ff = "for file in \`pf\`; do cmd=\"v \$file\" && print -rs -- \$cmd && eval \$cmd; done";
|
||||
gpl = "curl https://www.gnu.org/licenses/gpl-3.0.txt -o LICENSE";
|
||||
agpl = "curl https://www.gnu.org/licenses/agpl-3.0.txt -o LICENSE";
|
||||
tsm = "transmission-remote";
|
||||
|
|
|
|||
|
|
@ -20,9 +20,13 @@ in {
|
|||
interactiveShellInit = ''
|
||||
set -gx LC_ALL en_US.UTF-8
|
||||
set -gx SSH_AUTH_SOCK /run/user/1000/keyring/ssh
|
||||
set -gx FLAKE /home/zoey/nixos/
|
||||
set -gx NH_FLAKE /home/zoey/nixos/
|
||||
set -g FZF_PREVIEW_FILE_CMD "head -n 10"
|
||||
set -g FZF_PREVIEW_DIR_CMD "ls"
|
||||
|
||||
if not set -q TMUX
|
||||
tmux
|
||||
end
|
||||
'';
|
||||
|
||||
plugins = [
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ in {
|
|||
height = 1440;
|
||||
refresh = 239.972;
|
||||
};
|
||||
variable-refresh-rate = "on-demand";
|
||||
scale = 1;
|
||||
transform = {
|
||||
# "normal"
|
||||
|
|
@ -277,7 +278,18 @@ in {
|
|||
y = 16;
|
||||
};
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
app-id = "^cyberpunk2077.exe$";
|
||||
}
|
||||
{
|
||||
app-id = "^Overwatch2.exe$";
|
||||
}
|
||||
];
|
||||
|
||||
variable-refresh-rate = true;
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue