nvim: scope options properly

This commit is contained in:
Primrose 2025-07-09 00:10:06 +02:00
parent cdc0d38620
commit 22e1b7bf92
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 10 additions and 10 deletions

View file

@ -1 +1 @@
vim.o.expandtab = false vim.bo.expandtab = false

View file

@ -2,5 +2,5 @@
vim.bo.commentstring = "; %s" vim.bo.commentstring = "; %s"
vim.bo.varsofttabstop = "4,30,8,4" vim.bo.varsofttabstop = "4,30,8,4"
vim.o.spell = true vim.wo.spell = true
vim.bo.spelllang = "fr" vim.bo.spelllang = "fr"

View file

@ -1,4 +1,4 @@
vim.o.shiftwidth = 2 vim.bo.shiftwidth = 2
vim.o.tabstop = 2 vim.bo.tabstop = 2
vim.o.textwidth = 100 vim.bo.textwidth = 100
vim.o.colorcolumn = "100" vim.wo.colorcolumn = "100"

View file

@ -1,4 +1,4 @@
vim.o.shiftwidth = 2 vim.bo.shiftwidth = 2
vim.o.tabstop = 2 vim.bo.tabstop = 2
vim.o.textwidth = 100 vim.bo.textwidth = 100
vim.o.colorcolumn = "100" vim.wo.colorcolumn = "100"