fix lua, maybe bend now

This commit is contained in:
Noa Aarts 2024-05-20 22:40:56 +02:00
parent 479c55b555
commit 1d9644dcbc
4 changed files with 34 additions and 33 deletions

View file

@ -52,8 +52,9 @@ vim.opt.list = true
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" } vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" }
-- make tabs a reasonable width -- make tabs a reasonable width
vim.opt.tabstop = 4 vim.opt.tabstop = 2
vim.opt.softtabstop = 4 vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
-- Preview substitutions live, as you type! -- Preview substitutions live, as you type!
vim.opt.inccommand = "split" vim.opt.inccommand = "split"
@ -157,7 +158,7 @@ require("lazy").setup({
"tpope/vim-fugitive", "tpope/vim-fugitive",
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
"tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically -- "tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can also be added by using a table, -- NOTE: Plugins can also be added by using a table,
-- with the first argument being the link and the following -- with the first argument being the link and the following

View file

@ -7,7 +7,6 @@
# TODO: find how I can make this build dependencies only # TODO: find how I can make this build dependencies only
gnumake gnumake
cargo
rustc rustc
python3 python3
]; ];

View file

@ -73,6 +73,5 @@
]; ];
}; };
}; };
}; };
} }

View file

@ -66,6 +66,8 @@
nodejs nodejs
opam opam
stack stack
rustup
bend
localsend localsend
]; ];