mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
12 lines
224 B
Lua
12 lines
224 B
Lua
-- ~/.config/nvim/after/ftplugin/nix.lua
|
|
local set = vim.opt_local
|
|
|
|
set.shiftwidth = 2
|
|
set.tabstop = 2
|
|
set.softtabstop = 2
|
|
set.expandtab = true
|
|
|
|
-- extras you want for Nix buffers
|
|
set.number = true
|
|
set.relativenumber = true
|