initial configuration
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
vim.api.nvim_create_autocmd({ "CursorHold", "CursorHoldI" }, {
|
||||
group = vim.api.nvim_create_augroup("float_diagnostic_cursor", { clear = true }),
|
||||
callback = function ()
|
||||
vim.diagnostic.open_float(nil, {focus=false, scope="cursor"})
|
||||
end
|
||||
})
|
||||
|
||||
vim.opt.shell="zsh"
|
||||
vim.opt.fileformat="unix"
|
||||
vim.opt.fileformats="unix"
|
||||
vim.opt.cmdheight = 0
|
||||
vim.opt.guicursor = ""
|
||||
vim.opt.mouse = ""
|
||||
|
||||
vim.opt.nu = true
|
||||
vim.opt.relativenumber = true
|
||||
|
||||
vim.opt.tabstop = 2
|
||||
vim.opt.softtabstop = 2
|
||||
vim.opt.shiftwidth = 2
|
||||
vim.opt.expandtab = true
|
||||
|
||||
vim.opt.smartindent = true
|
||||
|
||||
vim.opt.wrap = false
|
||||
|
||||
vim.opt.swapfile = false
|
||||
vim.opt.backup = false
|
||||
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
|
||||
vim.opt.undofile = true
|
||||
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.scrolloff = 8
|
||||
vim.opt.signcolumn = "yes"
|
||||
vim.opt.isfname:append("@-@")
|
||||
|
||||
vim.opt.updatetime = 50
|
||||
|
||||
vim.opt.colorcolumn = "80"
|
||||
|
||||
vim.g.c_syntax_for_h = 1
|
||||
vim.g.mapleader = " "
|
||||
|
||||
Reference in New Issue
Block a user