Thomas Gideon
45af25f204
LSP breaks this because overlays with multiple lines are opened with a filetype of text causing the colorscheme to change unpredictably and sometimes break. Moved wiki/diary specific colorscheme to a project specific config outside of this repo.
11 lines
246 B
Lua
11 lines
246 B
Lua
vim.g.neoformat_try_node_exe = 1
|
|
|
|
-- set a smaller indent
|
|
local indent = 2
|
|
vim.opt.tabstop = indent
|
|
vim.opt.shiftwidth = indent
|
|
vim.opt.softtabstop = indent
|
|
|
|
vim.cmd('setlocal fdm=indent')
|
|
vim.cmd('setlocal smartindent')
|
|
vim.cmd('setlocal list')
|