mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 02:52:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib.modules) mkIf;
 | |
|   inherit (lib.nvim.lua) toLuaObject;
 | |
|   inherit (lib.nvim.dag) entryAnywhere;
 | |
| 
 | |
|   cfg = config.vim.visuals.nvim-cursorline;
 | |
| in {
 | |
|   config = mkIf cfg.enable {
 | |
|     vim = {
 | |
|       startPlugins = ["nvim-cursorline"];
 | |
| 
 | |
|       pluginRC.nvim-cursorline = entryAnywhere ''
 | |
|         require("nvim-cursorline").setup(${toLuaObject cfg.setupOpts})
 | |
|       '';
 | |
|     };
 | |
|   };
 | |
| }
 |