Compare commits
2 Commits
e8ebd9f7ad
...
57f28c0b7c
Author | SHA1 | Date |
---|---|---|
iGor milhit | 57f28c0b7c | |
iGor milhit | 78cfbf1c10 |
5
init.lua
5
init.lua
|
@ -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},
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
return {
|
||||
'cameron-wags/rainbow_csv.nvim',
|
||||
lazy = true,
|
||||
config = true,
|
||||
ft = {
|
||||
'csv',
|
||||
|
|
|
@ -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 },
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue