Compare commits

...

2 Commits

Author SHA1 Message Date
iGor milhit 57f28c0b7c
plugins: remove the ZenMode plugin
- Removes the ZenMode plugin as I should have done long ago.
- Lazy loads the Rainbow CSV plugin.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2023-10-06 09:53:03 +02:00
iGor milhit 78cfbf1c10
plugins: update config to the ibl version 3
- Updates the configuration accordingly to the indent blankline plugin
  version 3.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2023-10-06 09:47:39 +02:00
3 changed files with 4 additions and 41 deletions

View File

@ -173,9 +173,10 @@ require('lazy').setup({
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
main = "ibl",
opts = {
char = '',
show_trailing_blankline_indent = false,
indent = {char = ''},
whitespace = {remove_blankline_trail = false},
},
},

View File

@ -2,6 +2,7 @@
return {
'cameron-wags/rainbow_csv.nvim',
lazy = true,
config = true,
ft = {
'csv',

View File

@ -1,39 +0,0 @@
-- Zen mode with twilight.
-- Improves the edition experience with distraction free feature.
return {
"folke/zen-mode.nvim",
ft = {
"markdown",
"pandoc"
},
-- Twilight allows to dim text outside of the cursor line.
dependencies = {
"folke/twilight.nvim",
opts = {
-- Set the context to null in order to avoid highlighting to much
-- paragraphs in markdown.
context = 0,
},
},
opts = {
window = {
-- Set the window width (85 columns) and height (80%).
width = 85,
height = .8,
options = {
-- Disable line numbering, signcolumn and colorcolumn.
number = false,
signcolumn = "no",
},
},
plugins = {
options = {
enabled = true,
ruler = false,
showcmd = false,
},
gitsigns = { enabled = false },
},
},
}