Compare commits
No commits in common. "57f28c0b7c2bd6a0af6a47dccb120c4b0deab6db" and "e8ebd9f7ad0ba0211172ba95b658ff6036145662" have entirely different histories.
57f28c0b7c
...
e8ebd9f7ad
5
init.lua
5
init.lua
|
@ -173,10 +173,9 @@ require('lazy').setup({
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
'lukas-reineke/indent-blankline.nvim',
|
||||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||||
-- See `:help indent_blankline.txt`
|
-- See `:help indent_blankline.txt`
|
||||||
main = "ibl",
|
|
||||||
opts = {
|
opts = {
|
||||||
indent = {char = '┊'},
|
char = '┊',
|
||||||
whitespace = {remove_blankline_trail = false},
|
show_trailing_blankline_indent = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'cameron-wags/rainbow_csv.nvim',
|
'cameron-wags/rainbow_csv.nvim',
|
||||||
lazy = true,
|
|
||||||
config = true,
|
config = true,
|
||||||
ft = {
|
ft = {
|
||||||
'csv',
|
'csv',
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
-- 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 },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue