diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-03 22:44:45 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-03 22:44:45 +0200 |
commit | b69f2d8214ddd3ebe5ae70c34d118ee2808b438c (patch) | |
tree | 60cf761413bb711066729154c0f51b1150238a9e /.config/nvim | |
parent | 25ef246b7a20509040cc1b4b88efde3a9bc96cd5 (diff) |
nvim: Enable .exrc configurations
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/mango/set.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/nvim/lua/mango/set.lua b/.config/nvim/lua/mango/set.lua index c80970a..2e50272 100644 --- a/.config/nvim/lua/mango/set.lua +++ b/.config/nvim/lua/mango/set.lua @@ -7,6 +7,9 @@ local augroup = api.nvim_create_augroup('Mango', { clear = true }) opt.nu = true opt.relativenumber = true +opt.exrc = true +opt.secure = true + lib.set_tab_width(4) opt.expandtab = false opt.smartindent = true |