changed login shell to fern, added fern configuration

This commit is contained in:
2026-02-20 01:31:04 -05:00
parent b188e29dfd
commit 2a0116c336
19 changed files with 463 additions and 118 deletions

View File

@@ -1,4 +1,4 @@
{ lib, config, pkgs, ... }: {
{ self, lib, config, pkgs, ... }: {
options = {
movOpts.programConfigs.kittyConfig.enable =
lib.mkEnableOption "enables my kitty configuration";
@@ -16,9 +16,10 @@
confirm_os_window_close = 0;
window_padding_width = 4;
scrollback_lines = 10000;
enable_audio_bell = false;
enable_audio_bell = true;
allow_remote_control = true;
mouse_hide_wait = 60;
command_on_bell = "${pkgs.myScripts.playshellsound}/bin/playshellsound ${self}/assets/sound/bell.wav";
## Tabs
tab_title_template = "{index}";

View File

@@ -41,6 +41,12 @@ in {
vim.g.vimwiki_list = {{path = '~/vimwiki/', syntax = 'markdown', ext = '.md'}}
vim.filetype.add({
filename = {
[".fernrc"] = "sh",
}
})
vim.opt.number = true
vim.opt.autochdir = false
vim.opt.relativenumber = true

View File

@@ -7,6 +7,7 @@
programs.yazi = {
enable = true;
enableZshIntegration = true;
shellWrapperName = "y";
};
};
}