diff --git a/config/system/neovim.nix b/config/system/neovim.nix index e0b3f11..44c298d 100644 --- a/config/system/neovim.nix +++ b/config/system/neovim.nix @@ -14,6 +14,14 @@ in { enable = true; powerlineFonts = true; theme = "tomorrow"; + symbols = { + branch = ""; + colnr = " "; + readonly = ""; + linenr = " "; + maxlinenr = "☰ "; + dirty= "⚡"; + }; }; startup = { enable = true; @@ -83,7 +91,6 @@ in { extraConfigVim = '' set noshowmode - set showtabline=2 colorscheme base16-${theme} inoremap jj let s:guifontsize = 16 diff --git a/options.nix b/options.nix index bb58cd6..1b75d94 100644 --- a/options.nix +++ b/options.nix @@ -15,7 +15,7 @@ in { hostname = "${hostname}"; gitUsername = "Tyler Kelley"; gitEmail = "tylerzanekelley@gmail.com"; - theme = "atelier-cave"; + theme = "tomorrow-night"; slickbar = if waybarStyle == "slickbar" then true else false; slickbar-num = if waybarStyle == "slickbar-num" then true else false; simplebar = if waybarStyle == "simplebar" then true else false;