add keyword settings
This commit is contained in:
parent
e94c3cb923
commit
a0d94be4f3
|
|
@ -16,6 +16,10 @@ vim.opt.completeopt = { 'menu', 'menuone', 'noselect' }
|
||||||
-- Spelling
|
-- Spelling
|
||||||
vim.opt.spelllang = { 'en_gb' }
|
vim.opt.spelllang = { 'en_gb' }
|
||||||
|
|
||||||
|
-- Keyword characters (add $ for PHP/shell variables, - for CSS/HTML/config files)
|
||||||
|
vim.opt.iskeyword:append('$')
|
||||||
|
vim.opt.iskeyword:append('-')
|
||||||
|
|
||||||
-- Visuals
|
-- Visuals
|
||||||
vim.opt.showbreak = ' ↳'
|
vim.opt.showbreak = ' ↳'
|
||||||
vim.opt.listchars = {
|
vim.opt.listchars = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue