4-14 update

This commit is contained in:
2025-04-14 12:00:29 -04:00
parent 7326ab40f0
commit c12ae3a9e9
11 changed files with 45 additions and 11 deletions

View File

@@ -30,8 +30,8 @@
};
keybindings = {
"ctrl+shift+h" = "next_tab";
"ctrl+shift+l" = "previous_tab";
"ctrl+shift+l" = "next_tab";
"ctrl+shift+h" = "previous_tab";
"ctrl+shift+j" = "scroll_end";
"ctrl+shift+k" = "scroll_home";
"ctrl+shift+equal" = "change_font_size all +2.0";

View File

@@ -5,7 +5,7 @@ in {
programs.nixvim = {
colorschemes.base16 = {
enable = true;
colorscheme = "ayu-dark";
colorscheme = "chalk";
#colorscheme = {
# base00 = "#${scheme.base00}";
# base01 = "#${scheme.base01}";
@@ -37,6 +37,8 @@ in {
vim.g.neovide_cursor_animate_in_insert_mode = false
end
vim.g.vimwiki_list = {{path = '~/vimwiki/', syntax = 'markdown', ext = '.md'}}
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.hlsearch = true

View File

@@ -58,6 +58,9 @@
enable = true;
installCargo = false;
installRustc = false;
settings = {
check.allTargets = false;
};
};
nixd = {
enable = true;

View File

@@ -2,7 +2,18 @@
programs.nixvim = {
plugins.telescope = {
enable = true;
settings = { pickers = { find_files = { hidden = true; }; }; };
settings = {
defaults = {
file_ignore_patterns = [
"%.snap"
];
};
pickers = {
find_files = {
hidden = true;
};
};
};
};
};
}