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 = {},
|
||||
-- tsserver = {},
|
||||
|
||||
-- marksman = {
|
||||
-- ft = {
|
||||
-- 'markdown',
|
||||
-- 'pandoc'
|
||||
-- }
|
||||
-- },
|
||||
marksman = {
|
||||
ft = {
|
||||
'markdown',
|
||||
'pandoc'
|
||||
}
|
||||
},
|
||||
|
||||
lua_ls = {
|
||||
Lua = {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
return {
|
||||
'cameron-wags/rainbow_csv.nvim',
|
||||
config = true,
|
||||
lazy = true,
|
||||
ft = {
|
||||
'csv',
|
||||
'tsv',
|
||||
|
|
|
@ -12,6 +12,7 @@ vim.cmd([[ let g:vim_markdown_frontmatter = 1 ]])
|
|||
return {
|
||||
{
|
||||
"preservim/vim-markdown",
|
||||
lazy = true,
|
||||
ft = {
|
||||
'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