nvim.d/nvim/after/ftplugin/make.lua
Dan Anglin 0f18fb7cc5
fix: rename the config directory to nvim
Renamed the configuration directory to nvim so that, when extracted, the
correct directory is created.

Fixes linux-home/nvim.d#2
2023-01-16 19:13:25 +00:00

7 lines
148 B
Lua

local setlocal = vim.opt_local
-- Tabs and spaces
setlocal.expandtab = false
setlocal.tabstop = 4
setlocal.shiftwidth = 4
setlocal.softtabstop = 4