mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-12-20 10:51:17 +00:00
languages/nix: add missing local
This commit is contained in:
parent
bc7fe4272b
commit
36fc4aab32
1 changed files with 1 additions and 2 deletions
|
|
@ -11,7 +11,6 @@
|
|||
inherit (lib.strings) optionalString;
|
||||
inherit (lib.types) enum either listOf package str;
|
||||
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
||||
inherit (lib.nvim.dag) entryAnywhere;
|
||||
inherit (lib.nvim.lua) expToLua;
|
||||
inherit (lib.nvim.languages) diagnosticsToLua;
|
||||
|
||||
|
|
@ -180,7 +179,7 @@ in {
|
|||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "nix",
|
||||
callback = function(opts)
|
||||
bo = vim.bo[opts.buf]
|
||||
local bo = vim.bo[opts.buf]
|
||||
bo.tabstop = 2
|
||||
bo.shiftwidth = 2
|
||||
bo.softtabstop = 2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue