Switch back to macOS.
This commit is contained in:
parent
f8866a9eca
commit
e819a06cda
137 changed files with 192 additions and 23 deletions
26
_linux/_unused/nvchad/init.lua
Normal file
26
_linux/_unused/nvchad/init.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
local autocmd = vim.api.nvim_create_autocmd
|
||||
local opt = vim.opt
|
||||
|
||||
autocmd("BufRead", {
|
||||
pattern = "*.gotmpl",
|
||||
command = "set filetype=yaml",
|
||||
})
|
||||
autocmd("BufNewFile", {
|
||||
pattern = "*.gotmpl",
|
||||
command = "set filetype=yaml",
|
||||
})
|
||||
|
||||
opt.gdefault = true
|
||||
opt.hlsearch = false
|
||||
opt.shiftround = true
|
||||
opt.relativenumber = false
|
||||
opt.wrap = true
|
||||
opt.whichwrap = ''
|
||||
opt.writebackup = false
|
||||
|
||||
opt.clipboard = ""
|
||||
opt.foldcolumn = "0"
|
||||
opt.mouse = ""
|
||||
-- opt.laststatus = 2
|
||||
-- opt.mouse = ""
|
||||
-- opt.scrolloff = 5
|
Loading…
Add table
Add a link
Reference in a new issue