2021-06-26 02:36:26 +00:00
|
|
|
local opt = vim.opt
|
|
|
|
|
|
|
|
opt.ruler = false
|
|
|
|
opt.hidden = true
|
|
|
|
opt.ignorecase = true
|
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
|
|
|
opt.termguicolors = true
|
|
|
|
opt.cul = true
|
|
|
|
opt.mouse = "a"
|
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.cmdheight = 1
|
|
|
|
opt.updatetime = 250 -- update interval for gitsigns
|
2021-07-05 11:49:12 +00:00
|
|
|
opt.timeoutlen = 200
|
2021-06-26 02:36:26 +00:00
|
|
|
opt.clipboard = "unnamedplus"
|
2021-03-13 10:51:52 +00:00
|
|
|
|
2021-06-16 00:50:47 +00:00
|
|
|
-- Numbers
|
2021-06-26 02:36:26 +00:00
|
|
|
opt.number = true
|
|
|
|
opt.numberwidth = 2
|
2021-07-04 09:08:08 +00:00
|
|
|
-- opt.relativenumber = true
|
2021-06-16 00:50:47 +00:00
|
|
|
|
2021-03-13 10:51:52 +00:00
|
|
|
-- for indenline
|
2021-06-26 02:36:26 +00:00
|
|
|
opt.expandtab = true
|
|
|
|
opt.shiftwidth = 2
|
|
|
|
opt.smartindent = true
|
2021-06-15 16:14:11 +00:00
|
|
|
|
2021-06-26 02:08:44 +00:00
|
|
|
-- disable builtin vim plugins
|
|
|
|
vim.g.loaded_gzip = 0
|
|
|
|
vim.g.loaded_tar = 0
|
|
|
|
vim.g.loaded_tarPlugin = 0
|
|
|
|
vim.g.loaded_zipPlugin = 0
|
2021-06-26 02:24:10 +00:00
|
|
|
vim.g.loaded_2html_plugin = 0
|
2021-06-26 02:08:44 +00:00
|
|
|
vim.g.loaded_netrw = 0
|
|
|
|
vim.g.loaded_netrwPlugin = 0
|
2021-06-26 02:24:10 +00:00
|
|
|
vim.g.loaded_matchit = 0
|
|
|
|
vim.g.loaded_matchparen = 0
|
|
|
|
vim.g.loaded_spec = 0
|
2021-06-26 02:08:44 +00:00
|
|
|
|
2021-03-08 05:24:53 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.is_buffer_empty()
|
2021-03-13 01:23:02 +00:00
|
|
|
-- Check whether the current buffer is empty
|
|
|
|
return vim.fn.empty(vim.fn.expand("%:t")) == 1
|
2021-03-08 05:24:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.has_width_gt(cols)
|
2021-03-13 01:23:02 +00:00
|
|
|
-- Check if the windows width is greater than a given number of columns
|
|
|
|
return vim.fn.winwidth(0) / 2 > cols
|
2021-03-08 05:24:53 +00:00
|
|
|
end
|
2021-06-26 02:08:44 +00:00
|
|
|
|
2021-06-03 18:49:52 +00:00
|
|
|
-- file extension specific tabbing
|
2021-06-26 02:08:44 +00:00
|
|
|
-- vim.cmd([[autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
|
2021-06-26 12:50:25 +00:00
|
|
|
|
|
|
|
-- blankline config
|
|
|
|
|
|
|
|
M.blankline = function()
|
|
|
|
vim.g.indentLine_enabled = 1
|
|
|
|
vim.g.indent_blankline_char = "▏"
|
|
|
|
|
|
|
|
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
|
|
|
|
vim.g.indent_blankline_buftype_exclude = {"terminal"}
|
|
|
|
|
|
|
|
vim.g.indent_blankline_show_trailing_blankline_indent = false
|
|
|
|
vim.g.indent_blankline_show_first_indent_level = false
|
|
|
|
end
|
|
|
|
|
2021-03-08 05:24:53 +00:00
|
|
|
return M
|