File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 1- { lib , pkgs , ... } :
1+ { lib , config , pkgs , ... } :
22
33{
44 imports = [
99 ./telescope.nix
1010 ] ;
1111
12+ #assertions = [{
13+ # assertion = !config.programs.nixvim.colorschemes.kanagawa.enable && config.programs.nixvim.plugins.lualine.settings.options.theme == "kanagawa";
14+ # message = "NixVim `colorschemes.kanagawa.enable` is disabled but `plugins.lualine.settings.options.theme` is set to `kanagawa`.";
15+ #}];
16+
1217 extraPlugins = with pkgs . vimPlugins ; [
1318 vim-fetch # accept ./path/to/file:123 as line numbers
1419 ] ;
8186 settings = {
8287 options = {
8388 globalstatus = true ;
84- theme = "onedark ";
89+ theme = lib . mkDefault "kanagawa ";
8590 } ;
8691 # https://github.com/nvim-lualine/lualine.nvim?tab=readme-ov-file#filename-component-options
8792 sections = {
88- lualine_b = [ {
93+ lualine_b = [ {
8994 sources = [ "nvim_diagnostic" "nvim_lsp" ] ;
90- } ] ;
91- lualine_c = [ {
95+ } ] ;
96+ lualine_c = [ {
9297 path = 1 ;
93- } ] ;
98+ } ] ;
9499 } ;
95100 } ;
96101 } ;
You can’t perform that action at this time.
0 commit comments