mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-18 11:06:41 -07:00
updates to nixvim, zed and tmux
This commit is contained in:
parent
cd7c51855f
commit
91aa2d907a
5 changed files with 18 additions and 17 deletions
8
home.nix
8
home.nix
|
@ -220,12 +220,4 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Neovim Configuration
|
||||
# xdg.configFile."nvim".source = pkgs.fetchFromGitHub {
|
||||
# owner = "softinio";
|
||||
# repo = "nvim-config";
|
||||
# rev = "e89dc85e3a4116796d4393d37c12c31737e6f17c";
|
||||
# sha256 = "sha256-HCLF7vM4pUbW2OlOuat1isnuyfqfPxjJ4wWYLcNcu0M=";
|
||||
# };
|
||||
}
|
||||
|
|
|
@ -19,8 +19,7 @@
|
|||
"<leader>fd" = "diagnostics";
|
||||
|
||||
"<C-p>" = "git_files";
|
||||
"<leader>p" = "oldfiles";
|
||||
"<C-f>" = "live_grep";
|
||||
"<leader>?" = "oldfiles";
|
||||
};
|
||||
|
||||
settings.defaults = {
|
||||
|
|
|
@ -40,8 +40,10 @@
|
|||
}
|
||||
)
|
||||
{
|
||||
">" = ">gv";
|
||||
"<" = "<gv";
|
||||
# Removed gv to allow dot-repeat
|
||||
">" = ">";
|
||||
"<" = "<";
|
||||
# TAB keeps gv for convenience
|
||||
"<TAB>" = ">gv";
|
||||
"<S-TAB>" = "<gv";
|
||||
"K" = ":m '<-2<CR>gv=gv";
|
||||
|
|
|
@ -18,16 +18,23 @@ in
|
|||
yank
|
||||
kanagawa
|
||||
{
|
||||
plugin = kanagawa;
|
||||
plugin = tokyo-night-tmux;
|
||||
extraConfig = ''
|
||||
set -g @kanagawa-theme 'wave'
|
||||
set -g @kanagawa-plugins "cpu-usage git"
|
||||
set -g @kanagawa-show-powerline true
|
||||
set -g @kanagawa-refresh-rate 10
|
||||
set -g @tokyo-night-tmux_theme night
|
||||
set -g @tokyo-night-tmux_transparent 1
|
||||
set -g @tokyo-night-tmux_terminal_icon
|
||||
set -g @tokyo-night-tmux_active_terminal_icon
|
||||
|
||||
set -g @tokyo-night-tmux_show_path 1
|
||||
set -g @tokyo-night-tmux_path_format full
|
||||
|
||||
# No extra spaces between icons
|
||||
set -g @tokyo-night-tmux_window_tidy_icons 0
|
||||
|
||||
set -g status-right " #(tms sessions)"
|
||||
bind -r '(' switch-client -p\; refresh-client -S
|
||||
bind -r ')' switch-client -n\; refresh-client -S
|
||||
bind C-o display-popup -E "tms"
|
||||
'';
|
||||
}
|
||||
{
|
||||
|
|
|
@ -23,6 +23,7 @@ in
|
|||
model = "claude-4-sonnet";
|
||||
};
|
||||
};
|
||||
auto_save = "on_focus_change";
|
||||
language_models = {
|
||||
anthropic = {
|
||||
available_models = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue