Skip to content

Commit

Permalink
πŸ“– enable exrc files for neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
nimueller committed Jan 4, 2024
1 parent 6fe2eeb commit abc1536
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/nvim/lua/settings/general.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ vim.o.smartcase = true

-- Spell checking
vim.o.spell = true
vim.o.spelllang = "en,de"

-- Keep signcolumn on by default
vim.wo.signcolumn = 'yes'
Expand All @@ -41,3 +42,9 @@ vim.o.completeopt = 'menuone,noselect'

-- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true

-- Enable .vimrc files and editorconfig for the CWD in a secured mode
vim.g.editorconfig = true
vim.o.exrc = true
vim.o.secure = true

0 comments on commit abc1536

Please sign in to comment.