From 19106fdf5680040818ef91e160da510a32ef8f99 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sun, 29 May 2022 14:15:21 -0400 Subject: [PATCH] Configured shortmess. --- lua/user/options.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lua/user/options.lua b/lua/user/options.lua index cd7e877..15c6a2a 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -35,8 +35,10 @@ vim.opt.scrolloff = 8 -- is one of my fav vim.opt.sidescrolloff = 8 vim.opt.guifont = "monospace:h17" -- the font used in graphical neovim applications -vim.opt.shortmess:append "c" +-- vim.opt.shortmess:append "c" -- Don't give "|ins-completion-menu|" messages. +vim.opt.shortmess:append "I" -- Set No Intro-message for Neo-vim. -vim.cmd "set whichwrap+=<,>,[,],h,l" -vim.cmd [[set iskeyword+=-]] -vim.cmd [[set formatoptions-=cro]] -- TODO: this doesn't seem to work +-- vim.cmd Passes strings, that will be interpreted as vim-script. +-- vim.cmd "set whichwrap+=<,>,[,],h,l" +vim.cmd [[set iskeyword+=-]] -- Will treat words with a dash as part of a single word. +--vim.cmd [[set formatoptions-=cro]] -- TODO: this doesn't seem to work