initial commit
This commit is contained in:
commit
50da7ffff8
68 changed files with 3086 additions and 0 deletions
38
modules/home/dotfiles/nvim/lua/thegeneralist/set.lua
Normal file
38
modules/home/dotfiles/nvim/lua/thegeneralist/set.lua
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
vim.opt.guicursor = "n-v-c-i:block"
|
||||
|
||||
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.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("@-@")
|
||||
|
||||
-- https://www.reddit.com/r/vim/comments/3ql651/what_do_you_set_your_updatetime_to/
|
||||
vim.opt.updatetime = 50
|
||||
|
||||
vim.opt.colorcolumn = "80"
|
||||
-- vim.opt.cmdheight = 0
|
||||
-- vim.opt.showmode = false
|
||||
-- vim.opt.showcmd = false
|
||||
-- vim.opt.shortmess:append("F")
|
||||
-- vim.api.nvim_set_keymap('n', ':', '<cmd>FineCmdline<CR>', {noremap = true})
|
||||
Loading…
Add table
Add a link
Reference in a new issue