feat(terminal): Change some stuff

This commit is contained in:
Uttarayan Mondal
2024-04-08 10:23:39 +05:30
parent 90eb3e4530
commit e7ba412c20
3 changed files with 10 additions and 8 deletions

View File

@@ -18,6 +18,9 @@
# font_size = 13.0; # font_size = 13.0;
}; };
shellIntegration.enableFishIntegration = true; shellIntegration.enableFishIntegration = true;
darwinLaunchOptions = [
"--single-instance"
];
theme = "Catppuccin-Mocha"; theme = "Catppuccin-Mocha";
}; };
} }

View File

@@ -12,7 +12,7 @@
build-users-group = nixbld build-users-group = nixbld
extra-nix-path = nixpkgs=flake:nixpkgs extra-nix-path = nixpkgs=flake:nixpkgs
''; '';
package = pkgs.nix; # package = pkgs.nixVersions.nix_2_21;
}; };
# security.pam.enableSudoTouchIdAuth = true; # security.pam.enableSudoTouchIdAuth = true;

View File

@@ -451,13 +451,6 @@ in rec {
} }
} }
if not vim.g.neovide then
load["core.integrations.image"] = {
config = {
tmux_show_only_in_active_window = true,
}
}
end
require('neorg').setup({ require('neorg').setup({
load = load, load = load,
@@ -488,8 +481,14 @@ in rec {
if not vim.g.neovide then if not vim.g.neovide then
require('neoscroll').setup() require('neoscroll').setup()
require('image').setup({["backend"] = "kitty",["tmux_show_only_in_active_window"] = true}) require('image').setup({["backend"] = "kitty",["tmux_show_only_in_active_window"] = true})
load["core.integrations.image"] = {
config = {
tmux_show_only_in_active_window = true,
}
}
else else
vim.o.guifont = "Hasklug Nerd Font Mono:h13" vim.o.guifont = "Hasklug Nerd Font Mono:h13"
vim.g.neovide_cursor_vfx_mode = "railgun"
end end