accomodating for fern package name change to 'shed'

This commit is contained in:
2026-02-24 18:05:46 -05:00
parent e9cbd0d686
commit a5582a584f
14 changed files with 87 additions and 63 deletions

View File

@@ -14,6 +14,7 @@
settings = {
confirm_os_window_close = 0;
background_opacity = lib.mkForce 0.5;
window_padding_width = 4;
scrollback_lines = 10000;
enable_audio_bell = true;

View File

@@ -5,7 +5,7 @@ in {
programs.nixvim = {
colorschemes.base16 = {
enable = true;
colorscheme = "chalk";
colorscheme = "seti";
#colorscheme = {
# base00 = "#${scheme.base00}";
# base01 = "#${scheme.base01}";
@@ -37,13 +37,15 @@ in {
if vim.g.neovide then
vim.g.neovide_refresh_rate = 144
vim.g.neovide_cursor_animate_in_insert_mode = true
vim.g.neovide_opacity = 0.5;
vim.g.neovide_normal_opacity = 1.0;
end
vim.g.vimwiki_list = {{path = '~/vimwiki/', syntax = 'markdown', ext = '.md'}}
vim.filetype.add({
filename = {
[".fernrc"] = "sh",
[".shedrc"] = "sh",
}
})