Got Null-LS working with markdown and python.

This commit is contained in:
Norm Rasmussen
2022-11-30 17:21:29 -05:00
parent c8bcff39f5
commit 8d46ae585e
9 changed files with 234 additions and 67 deletions

View File

@ -23,6 +23,8 @@ opt.shell = "/bin/zsh"
opt.updatetime = 200
opt.cursorline = true
g.markdown_folding = 1
opt.spell=true
opt.spelllang = 'en_us'
-----------------------------------------------------------
-- Neovim UI
-----------------------------------------------------------
@ -30,9 +32,9 @@ opt.number = true -- Show line number
opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor.
opt.showmatch = true -- Highlight matching parenthesis
opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker')
opt.colorcolumn = '150' -- Line lenght marker at 80 columns
opt.colorcolumn = '150' -- Line length marker at 80 columns
opt.splitright = true -- Vertical split to the right
opt.splitbelow = true -- Orizontal split to the bottom
opt.splitbelow = true -- Horizontal split to the bottom
opt.ignorecase = true -- Ignore case letters when search
opt.smartcase = true -- Ignore lowercase for the whole pattern
opt.linebreak = true -- Wrap on word boundary