Skip to content

Commit

Permalink
fix(smartcolumn-nvim): Add sensible default opts for when not to show…
Browse files Browse the repository at this point in the history
… colorcolumn (#607)

* Disable colorcolumn in home screen and file tree

* Add "starter" to disabled_filetypes
  • Loading branch information
menoua authored Oct 17, 2023
1 parent 5c3ce63 commit c624e8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/astrocommunity/bars-and-lines/smartcolumn-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
return {
"m4xshen/smartcolumn.nvim",
event = { "InsertEnter", "User AstroFile" },
opts = {},
opts = {
disabled_filetypes = { "alpha", "neo-tree", "starter", "help", "text", "markdown" },
},
}

0 comments on commit c624e8a

Please sign in to comment.