diff options
author | shinu_donney <[email protected]> | 2021-04-22 07:30:35 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-21 22:00:35 -0400 |
commit | 8d34992077e0ec96434c0b65c96725aaa30b28d8 (patch) | |
tree | 9f4a116098c9fed52a0bd584076d4705c93caa5f /lua/settings.lua | |
parent | 3e66e82b7ea3edf881fa0d374ccce10aee1cd057 (diff) |
Minor fixes (#287)
* Fix a typo
* Update a faulty comment
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index 050b7a77..17483362 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -8,14 +8,14 @@ vim.cmd('let &titleold="'..TERMINAL..'"') vim.o.titlestring="%<%F%=%l/%L - nvim" vim.wo.wrap = O.wrap_lines -- Display long lines as just one line vim.cmd('set whichwrap+=<,>,[,],h,l') -- move to next line with theses keys -vim.cmd('syntax on') -- move to next line with theses keys +vim.cmd('syntax on') -- syntax highlighting vim.o.pumheight = 10 -- Makes popup menu smaller vim.o.fileencoding = "utf-8" -- The encoding written to file vim.o.cmdheight = 2 -- More space for displaying messages vim.cmd('set colorcolumn=99999') -- fix indentline for now vim.o.mouse = "a" -- Enable your mouse vim.o.splitbelow = true -- Horizontal splits will automatically be below -vim.o.termguicolors = true -- set term giu colors most terminals support this +vim.o.termguicolors = true -- set term gui colors most terminals support this vim.o.splitright = true -- Vertical splits will automatically be to the right vim.o.t_Co = "256" -- Support 256 colors vim.o.conceallevel = 0 -- So that I can see `` in markdown files |