From 48fc3d252876555a5a14f41d4e9d363e28b8a6b1 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Fri, 22 Apr 2022 23:32:01 +0300 Subject: [PATCH] set 'smartindent' option --- neovim/.config/nvim/lua/user/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/neovim/.config/nvim/lua/user/options.lua b/neovim/.config/nvim/lua/user/options.lua index 6ebc3cf..4d7e648 100644 --- a/neovim/.config/nvim/lua/user/options.lua +++ b/neovim/.config/nvim/lua/user/options.lua @@ -5,6 +5,7 @@ opt.tabstop = 2 opt.shiftwidth = 2 opt.expandtab = true opt.autoindent = true +opt.smartindent = true -- What the **** is this opt.shortmess = "filnxtToOFc"