mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
123 lines
3.6 KiB
Nix
123 lines
3.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.vim.visuals;
|
|
in {
|
|
config = mkIf cfg.enable (mkMerge [
|
|
(mkIf cfg.indentBlankline.enable {
|
|
vim.startPlugins = ["indent-blankline"];
|
|
vim.luaConfigRC.indent-blankline = nvim.dag.entryAnywhere ''
|
|
-- highlight error: https://github.com/lukas-reineke/indent-blankline.nvim/issues/59
|
|
vim.wo.colorcolumn = "99999"
|
|
vim.opt.list = true
|
|
|
|
${optionalString (cfg.indentBlankline.eolChar != null) ''
|
|
vim.opt.listchars:append({ eol = "${cfg.indentBlankline.eolChar}" })
|
|
''}
|
|
${optionalString (cfg.indentBlankline.fillChar != null) ''
|
|
vim.opt.listchars:append({ space = "${cfg.indentBlankline.fillChar}" })
|
|
''}
|
|
|
|
require("indent_blankline").setup {
|
|
enabled = true,
|
|
char = "${cfg.indentBlankline.listChar}",
|
|
show_current_context = ${boolToString cfg.indentBlankline.showCurrContext},
|
|
show_end_of_line = ${boolToString cfg.indentBlankline.showEndOfLine},
|
|
use_treesitter = ${boolToString cfg.indentBlankline.useTreesitter},
|
|
}
|
|
'';
|
|
})
|
|
|
|
(mkIf cfg.cursorline.enable {
|
|
vim.startPlugins = ["nvim-cursorline"];
|
|
vim.luaConfigRC.cursorline = nvim.dag.entryAnywhere ''
|
|
require('nvim-cursorline').setup {
|
|
cursorline = {
|
|
timeout = ${toString cfg.cursorline.lineTimeout},
|
|
number = ${boolToString (!cfg.cursorline.lineNumbersOnly)},
|
|
}
|
|
}
|
|
'';
|
|
})
|
|
|
|
(mkIf cfg.nvimWebDevicons.enable {
|
|
vim.startPlugins = ["nvim-web-devicons"];
|
|
})
|
|
|
|
(mkIf cfg.scrollBar.enable {
|
|
vim.startPlugins = ["scrollbar-nvim"];
|
|
vim.luaConfigRC.scrollBar = nvim.dag.entryAnywhere ''
|
|
require('scrollbar').setup{
|
|
excluded_filetypes = {
|
|
'prompt',
|
|
'TelescopePrompt',
|
|
'noice',
|
|
'NvimTree',
|
|
'alpha',
|
|
'code-action-menu-menu',
|
|
'code-action-menu-warning-message',
|
|
'notify',
|
|
'Navbuddy'
|
|
},
|
|
}
|
|
'';
|
|
})
|
|
|
|
(mkIf cfg.smoothScroll.enable {
|
|
vim.startPlugins = ["cinnamon-nvim"];
|
|
vim.luaConfigRC.smoothScroll = nvim.dag.entryAnywhere ''
|
|
require('cinnamon').setup()
|
|
'';
|
|
})
|
|
|
|
(mkIf cfg.cellularAutomaton.enable {
|
|
vim.startPlugins = ["cellular-automaton"];
|
|
|
|
vim.maps.normal = mkBinding cfg.cellularAutomaton.mappings.makeItRain "<cmd>CellularAutomaton make_it_rain<CR>" "Make it rain";
|
|
|
|
vim.luaConfigRC.cellularAUtomaton = nvim.dag.entryAnywhere ''
|
|
local config = {
|
|
fps = 50,
|
|
name = 'slide',
|
|
}
|
|
|
|
-- init function is invoked only once at the start
|
|
-- config.init = function (grid)
|
|
--
|
|
-- end
|
|
|
|
-- update function
|
|
config.update = function (grid)
|
|
for i = 1, #grid do
|
|
local prev = grid[i][#(grid[i])]
|
|
for j = 1, #(grid[i]) do
|
|
grid[i][j], prev = prev, grid[i][j]
|
|
end
|
|
end
|
|
return true
|
|
end
|
|
|
|
require("cellular-automaton").register_animation(config)
|
|
'';
|
|
})
|
|
|
|
(mkIf cfg.fidget-nvim.enable {
|
|
vim.startPlugins = ["fidget-nvim"];
|
|
vim.luaConfigRC.fidget-nvim = nvim.dag.entryAnywhere ''
|
|
require"fidget".setup{
|
|
align = {
|
|
bottom = ${boolToString cfg.fidget-nvim.align.bottom},
|
|
right = ${boolToString cfg.fidget-nvim.align.right},
|
|
},
|
|
window = {
|
|
blend = 0,
|
|
},
|
|
}
|
|
'';
|
|
})
|
|
]);
|
|
}
|