Disable fingerprint on Arendia + hints in Avante + tmux settings
This commit is contained in:
parent
7309bc192e
commit
bc1c6e9054
|
@ -13,7 +13,8 @@ return {
|
||||||
},
|
},
|
||||||
behaviour = {
|
behaviour = {
|
||||||
enable_cursor_planning_mode = false, -- enable cursor planning mode!
|
enable_cursor_planning_mode = false, -- enable cursor planning mode!
|
||||||
}
|
},
|
||||||
|
hints = { enabled = false }
|
||||||
},
|
},
|
||||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||||
build = "nix-shell -p cmake --command make",
|
build = "nix-shell -p cmake --command make",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
shell = "${pkgs.zsh}/bin/zsh";
|
shell = "${pkgs.zsh}/bin/zsh";
|
||||||
|
@ -17,23 +17,22 @@
|
||||||
{
|
{
|
||||||
plugin = pkgs.tmuxPlugins.catppuccin;
|
plugin = pkgs.tmuxPlugins.catppuccin;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
set -g @catppuccin_window_current_color "#0F7FCF"
|
set -ogq @catppuccin_flavor "mocha"
|
||||||
set -g @catppuccin_window_current_background "#1F2430"
|
set -ogq @catppuccin_window_status_style "rounded"
|
||||||
set -g @catppuccin_window_default_color "#5a5d70"
|
set -ogq @catppuccin_window_current_number_color "#1F2430"
|
||||||
set -g @catppuccin_window_default_background "#181825"
|
set -ogq @catppuccin_window_current_text_color "#0F7FCF"
|
||||||
set -g @catppuccin_pane_border_style "fg=#181825"
|
set -ogq @catppuccin_window_number_color "#181825"
|
||||||
set -g @catppuccin_pane_active_border_style "fg=#023269"
|
set -ogq @catppuccin_window_text_color "#5a5d70"
|
||||||
set -g @catppuccin_status_background "default"
|
set -ogq @catppuccin_window_current_text " #{b:pane_current_path}"
|
||||||
set -g @catppuccin_window_default_text "#W"
|
set -ogq @catppuccin_window_text " #{b:pane_current_path}"
|
||||||
set -g @catppuccin_window_current_text "#W"
|
set -ogq @catppuccin_pane_border_style "fg=#181825"
|
||||||
set -g @catppuccin_status_modules_right "directory"
|
set -ogq @catppuccin_pane_active_border_style "fg=#023269"
|
||||||
set -g @catppuccin_window_left_separator ""
|
set -ogq @catppuccin_directory_color "#0F7FCF"
|
||||||
set -g @catppuccin_window_right_separator " "
|
set -ogq @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S"
|
||||||
set -g @catppuccin_directory_color "#0F7FCF"
|
set -ogq @catppuccin_menu_selected_style "fg=#{@thm_gray},bg=#0F7FCF"
|
||||||
set -g @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S"
|
set -ogq @catppuccin_status_background "default"
|
||||||
set -g @catppuccin_menu_selected_style "fg=#{thm_gray},bg=#0F7FCF"
|
set -ogq status-right "#{E:@catppuccin_status_directory}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -49,11 +49,11 @@ in {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# backend = "python-validity";
|
# backend = "python-validity";
|
||||||
# };
|
# };
|
||||||
services."06cb-009a-fingerprint-sensor" = {
|
# services."06cb-009a-fingerprint-sensor" = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
backend = "libfprint-tod";
|
# backend = "libfprint-tod";
|
||||||
calib-data-file = ./files/calib-data-2.bin;
|
# calib-data-file = ./files/calib-data-2.bin;
|
||||||
};
|
# };
|
||||||
|
|
||||||
# virtualisation
|
# virtualisation
|
||||||
virtualisation.libvirtd.enable = true;
|
virtualisation.libvirtd.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue