patching migration

This commit is contained in:
2024-11-06 21:51:22 +01:00
parent 46dcd0753e
commit 91d567d5a5
5 changed files with 18 additions and 13 deletions

View File

@@ -1,12 +1,12 @@
{
{ lib, ... }: {
programs.kitty = {
enable = true;
font = {
name = "FiraCode Nerd Font";
name = lib.mkForce "FiraCode Nerd Font";
size = 12;
};
themeFile = "Rose Pine";
themeFile = "rose-pine";
settings = {
confirm_os_window_close = 0;

View File

@@ -4,7 +4,7 @@
}: {
programs.neovim = {
enable = true;
package = pkgs.neovim;
# package = pkgs.neovim;
viAlias = true;
vimAlias = true;

View File

@@ -56,7 +56,9 @@ in
# }
# ];
enableAutosuggestions = true;
autosuggestion = {
enable = true;
};
syntaxHighlighting = {
enable = true;
@@ -67,12 +69,7 @@ in
};
initExtra = ''
# [[ ! -f ${./p10k.zsh} ]] || source ${./p10k.zsh}
eval "$(zoxide init --cmd cd zsh)"
# if [ -x "$(command -v tmux)" ] && [ -n "$DISPLAY" ] && [ -z "$TMUX" ]; then
# exec tmux new-session -A -s $USER >/dev/null 2>&1
# exec tmux new-session -t $USER >/dev/null 2>&1 | tmux new-session -A -s $USER >/dev/null 2>&1
# fi
'';
};
};

View File

@@ -1,19 +1,25 @@
{ pkgs, ... }: {
programs.vscode = {
enable = true;
package = pkgs.vscodium;
package = pkgs.vscodium-fhs;
extensions = with pkgs.vscode-extensions; [
ms-python.python
ms-python.debugpy
jnoortheen.nix-ide
mvllow.rose-pine
github.copilot
github.copilot-chat
ms-vsliveshare.vsliveshare
rust-lang.rust-analyzer
];
userSettings = {
"editor.fontSize" = 18;
"editor.fontSize" = 16;
"editor.fontFamily" = "FiraCode Nerd Font";
"explorer.confirmDelete" = false;
"disable-hardware-acceleration" = true;
"explorer.confirmDragAndDrop" = true;
"git.openRepositoryInParentFolders" = "never";
@@ -47,7 +53,7 @@
"editor.formatOnPaste" = true;
"editor.minimap.enabled" = false;
"symbols.hidesExplorerArrows" = false;
# "symbols.hidesExplorerArrows" = false;
"workbench.iconTheme" = "rose-pine-icons";
"workbench.colorTheme" = "Rosé Pine";