From d2916b44dbe28928c7a6bc44f105a925c2485c4b Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 13 Sep 2023 09:07:27 -0500 Subject: [PATCH] changed coding style to conform with workplace coding style. --- neovim/.clang-format | 2 +- neovim/.config/nvim/init.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/neovim/.clang-format b/neovim/.clang-format index cb3d557..6429461 100644 --- a/neovim/.clang-format +++ b/neovim/.clang-format @@ -5,7 +5,7 @@ ColumnLimit: 120 IndentWidth: 4 TabWidth: 4 UseCRLF: false -UseTab: AlignWithSpaces +UseTab: Never AlignAfterOpenBracket: BlockIndent AlwaysBreakBeforeMultilineStrings: true BreakBeforeBraces: Attach diff --git a/neovim/.config/nvim/init.lua b/neovim/.config/nvim/init.lua index 804d022..d6ba504 100644 --- a/neovim/.config/nvim/init.lua +++ b/neovim/.config/nvim/init.lua @@ -58,8 +58,8 @@ opt.autoindent = true opt.smartindent = true opt.smarttab = true --space based tabs. --- opt.softtabstop=-1 --negative value inherrits shiftwidth. --- opt.expandtab=true +opt.softtabstop=-1 --negative value inherrits shiftwidth. +opt.expandtab=true --highlight search results as you type. opt.hlsearch = true opt.incsearch = true