Added formatting, linter, and mason_tool_install

This commit is contained in:
Jeremie Fraeys 2023-11-02 12:44:53 -04:00
parent c54236b7ac
commit 8bce42bec4
5 changed files with 206 additions and 23 deletions

View file

@ -1,6 +1,9 @@
local opt = vim.opt
local g = vim.g
local options = {
-- change cursor in insert mode
guicursor = "",
-- Make line numbers default
relativenumber = true,
@ -124,11 +127,11 @@ opt.formatoptions = opt.formatoptions
+ "j" -- Auto-remove comments if possible.
- "2" -- I'm not in gradeschool anymore
opt.guicursor = {
"n-v:block",
"i-c-ci-ve:ver25",
"r-cr:hor20",
"o:hor50",
"i:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor",
"sm:block-blinkwait175-blinkoff150-blinkon175",
}
-- opt.guicursor = {
-- "n-v:block",
-- "i-c-ci-ve:ver25",
-- "r-cr:hor20",
-- "o:hor50",
-- "i:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor",
-- "sm:block-blinkwait175-blinkoff150-blinkon175",
-- }