net config

This commit is contained in:
Harivansh Rathi 2026-02-04 15:18:34 -05:00
parent 93b7b93d64
commit dd59a54b92
36 changed files with 960 additions and 631 deletions

2
after/ftplugin/go.lua Normal file
View file

@ -0,0 +1,2 @@
vim.opt_local.expandtab = false
vim.opt_local.tabstop = 4

2
after/ftplugin/lua.lua Normal file
View file

@ -0,0 +1,2 @@
vim.opt_local.tabstop = 4
vim.opt_local.shiftwidth = 4

View file

@ -0,0 +1,3 @@
vim.opt_local.wrap = true
vim.opt_local.textwidth = 80
vim.opt_local.conceallevel = 2

View file

@ -0,0 +1,2 @@
vim.opt_local.makeprg = "python %"
vim.opt_local.colorcolumn = "88"

2
after/ftplugin/rust.lua Normal file
View file

@ -0,0 +1,2 @@
vim.opt_local.makeprg = "cargo run"
vim.opt_local.colorcolumn = "100"