just making then nicer

This commit is contained in:
cy 2025-01-21 21:59:59 -05:00
parent cfa298fb63
commit 2622119933
2 changed files with 24 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
programs.nixvim = {
enable = true;
@ -15,15 +15,18 @@
incsearch = true;
smartcase = true;
};
colorscheme = "iceberg";
clipboard.register = "unnamedplus";
colorscheme = "github_dark_tritanopia";
clipboard.register = "unnamed";
globals = {
mapleader = ",";
};
extraPlugins = with pkgs.vimPlugins; [
iceberg-vim
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "gitub-theme";
src = inputs.nvim-github-theme;
})
];
keymaps = [