Skip to content

Commit

Permalink
add indent blankline configuration instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-gorohovsky committed Jan 19, 2025
1 parent 21886ca commit 43805f7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,29 @@ lazy.nvim
{ "igor-gorohovsky/pustota.nvim", version = "*", dependencies = {"nvim-treesitter/nvim-treesitter"} }
```

## Configuration
Recommended but not required `indent-blankline.nvim` config:

```lua
return {
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {
indent = {
char = "",
highlight = "Indent",
},
},
config = function(_, opts)
require("pustota").ibl_setup()
require("ibl").setup(opts)
end,
},
}

```

## Usage
```vim
colorscheme pustota
Expand Down

0 comments on commit 43805f7

Please sign in to comment.