diff options
Diffstat (limited to '.config/nvim/lua/theme.lua')
-rw-r--r-- | .config/nvim/lua/theme.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/nvim/lua/theme.lua b/.config/nvim/lua/theme.lua index 79631c1..556a230 100644 --- a/.config/nvim/lua/theme.lua +++ b/.config/nvim/lua/theme.lua @@ -33,7 +33,7 @@ if not ok then end require('lualine').setup { - options = { + options = { theme = colorscheme, icons_enabled = true, globalstatus = true, @@ -66,3 +66,8 @@ require('alpha').setup(theme.config) require('hologram').setup { auto_display = true } + +require("virt-column").setup { + enabled = true, + virtcolumn = "80" +} |