Compare commits
3 Commits
d0d30fea68
...
5032bbd5c8
Author | SHA1 | Date |
---|---|---|
iGor milhit | 5032bbd5c8 | |
iGor milhit | c2f0aa8ee2 | |
iGor milhit | 5e9994536b |
|
@ -1,8 +0,0 @@
|
||||||
-- Specific settings for markdown files
|
|
||||||
-- Use treesitter for folding
|
|
||||||
-- Disable the color column
|
|
||||||
|
|
||||||
-- vim.opt.foldmethod="expr"
|
|
||||||
-- vim.opt.foldexpr="nvim_treesitter#foldexpr()"
|
|
||||||
-- vim.g.markdown_folding=1
|
|
||||||
-- vim.opt.foldlevel=1
|
|
12
init.lua
12
init.lua
|
@ -487,12 +487,12 @@ local servers = {
|
||||||
-- rust_analyzer = {},
|
-- rust_analyzer = {},
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
|
|
||||||
-- marksman = {
|
marksman = {
|
||||||
-- ft = {
|
ft = {
|
||||||
-- 'markdown',
|
'markdown',
|
||||||
-- 'pandoc'
|
'pandoc'
|
||||||
-- }
|
}
|
||||||
-- },
|
},
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
return {
|
return {
|
||||||
'cameron-wags/rainbow_csv.nvim',
|
'cameron-wags/rainbow_csv.nvim',
|
||||||
config = true,
|
config = true,
|
||||||
|
lazy = true,
|
||||||
ft = {
|
ft = {
|
||||||
'csv',
|
'csv',
|
||||||
'tsv',
|
'tsv',
|
||||||
|
|
|
@ -12,6 +12,7 @@ vim.cmd([[ let g:vim_markdown_frontmatter = 1 ]])
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"preservim/vim-markdown",
|
"preservim/vim-markdown",
|
||||||
|
lazy = true,
|
||||||
ft = {
|
ft = {
|
||||||
'markdown'
|
'markdown'
|
||||||
}
|
}
|
||||||
|
|
|
@ -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