From 353a643170597d5a9ad4ae8e353a45306b0e7553 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 23 Mar 2021 12:49:02 -0400 Subject: [PATCH] update settings --- lua/settings.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/settings.lua b/lua/settings.lua index 6f696b2f..97ee420b 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -2,13 +2,13 @@ vim.cmd('set iskeyword+=-') -- treat dash separated words as a word text object" vim.cmd('set shortmess+=c') -- Don't pass messages to |ins-completion-menu|. vim.o.hidden = true -- Required to keep multiple buffers open multiple buffers vim.wo.wrap = false -- Display long lines as just one line -vim.cmd('set whichwrap+=<,>,[,],h,l') +vim.cmd('set whichwrap+=<,>,[,],h,l') -- move to next line with theses keys 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.o.mouse = "a" -- Enable your mouse vim.o.splitbelow = true -- Horizontal splits will automatically be below -vim.o.termguicolors = true +vim.o.termguicolors = true -- set term giu 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 @@ -16,7 +16,7 @@ vim.cmd('set ts=4') -- Insert 2 spaces for a tab vim.cmd('set sw=4') -- Change the number of space characters inserted for indentation vim.bo.expandtab = true -- Converts tabs to spaces vim.bo.smartindent = true -- Makes indenting smart -vim.wo.number = true +vim.wo.number = true -- set numbered lines vim.wo.cursorline = true -- Enable highlighting of the current line vim.o.showtabline = 2 -- Always show tabs vim.o.showmode = false -- We don't need to see things like -- INSERT -- anymore