Convert to lua
- prune unused - drop scripting, use symlink for identical options
This commit is contained in:
parent
dc820cae1c
commit
9fee066f65
13 changed files with 50 additions and 56 deletions
12
ftplugin/text.lua
Normal file
12
ftplugin/text.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
-- don't hard break text
|
||||
vim.opt.textwidth = 0
|
||||
-- keep soft breaks between words
|
||||
vim.cmd('setlocal linebreak')
|
||||
-- turn list off as it interferes with soft wrapping
|
||||
vim.cmd('setlocal nolist')
|
||||
-- turn off breaking when typing new text
|
||||
vim.cmd('setlocal formatoptions-=t')
|
||||
-- turn off line width hint
|
||||
vim.cmd('setlocal colorcolumn=0')
|
||||
-- set an alternate colorscheme from coding
|
||||
vim.cmd('colorscheme quiet')
|
Loading…
Add table
Add a link
Reference in a new issue