summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-01-23 16:35:48 +0100
committerJoe <rbo@gmx.us>2024-01-23 16:35:48 +0100
commit67931f1deee32e6b6ebb4fd370455241232184af (patch)
treeb565b75c46df6745f3b118f0b0b99dbd29168d79 /.config
parentup (diff)
downloaddotfiles-bsd-67931f1deee32e6b6ebb4fd370455241232184af.tar.gz
dotfiles-bsd-67931f1deee32e6b6ebb4fd370455241232184af.tar.bz2
dotfiles-bsd-67931f1deee32e6b6ebb4fd370455241232184af.tar.xz
dotfiles-bsd-67931f1deee32e6b6ebb4fd370455241232184af.tar.zst
dotfiles-bsd-67931f1deee32e6b6ebb4fd370455241232184af.zip
up
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/packs.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/nvim/lua/packs.lua b/.config/nvim/lua/packs.lua
index 79297cd..196a9cd 100644
--- a/.config/nvim/lua/packs.lua
+++ b/.config/nvim/lua/packs.lua
@@ -124,6 +124,25 @@ return require('packer').startup({function(use)
end
})
use 'onsails/lspkind.nvim'
+ use ({
+ 'lcheylus/overlength.nvim',
+ config = function()
+ require('overlength').setup({
+ enabled = true,
+ colors = {
+ ctermfg = nil,
+ ctermbg = 'darkgrey',
+ fg = nil,
+ bg = '#8B0000',
+ },
+ textwidth_mode = 0,
+ default_overlength = 80,
+ grace_length = 1,
+ highlight_to_eol = true,
+ disable_ft = { 'qf', 'help', 'man', 'checkhealth', 'lazy', 'packer', 'NvimTree', 'Telescope', 'WhichKey' },
+ })
+ end
+ })
use 'alec-gibson/nvim-tetris'
use 'seandewar/nvimesweeper'
use {