nvim: refactor cmds into commands

This commit is contained in:
Primrose 2025-07-08 15:44:05 +02:00
parent 1bdcd3386e
commit 7ae86384f6
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
14 changed files with 89 additions and 147 deletions

View file

@ -0,0 +1 @@
vim.bo.textwidth = 72

View file

@ -0,0 +1 @@
vim.o.expandtab = false

View file

@ -0,0 +1,2 @@
local opts = require("opts")
opts.matchit_let_in()

View file

@ -0,0 +1,6 @@
-- TODO: remove this when PR is merged
vim.bo.commentstring = "; %s"
vim.bo.varsofttabstop = "4,30,8,4"
vim.o.spell = true
vim.bo.spelllang = "fr"

View file

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

View file

@ -0,0 +1,2 @@
local opts = require("opts")
opts.matchit_let_in()

View file

@ -0,0 +1,2 @@
local opts = require("opts")
opts.matchit_let_in()

View file

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