feat(nvim): setup indent blankline with rainbow colors

This commit is contained in:
matt1432 2023-09-30 00:05:54 -04:00
parent 045287e682
commit 0cec51bc54
3 changed files with 27 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
imports = [

View file

@ -1,8 +1,8 @@
# https://breuer.dev/blog/nixos-home-manager-neovim
{ config, pkgs, lib, ... }:
{ pkgs, lib, ... }:
let
configDir = "/home/matt/.nix/config";
# installs a vim plugin from git with a given tag / branch
pluginGit = ref: repo: pkgs.vimUtils.buildVimPluginFrom2Nix {
pname = "${lib.strings.sanitizeDerivationName repo}";