kickstart.nvim/after/plugin/defaults.lua
PeteChu 5c8fa11c53 * refactor(defaults.lua): remove trailing whitespace
* feat(defaults.lua): add swapfile option and set it to false
* refactor(keymaps.lua): add whitespace for readability
* feat(keymaps.lua): add keymap to open folder in workspace in tmux session
* feat(keymaps.lua): add keymaps for buffer delete and buffer wipeout
* chore(treesitter.lua): remove treesitter configuration file

* chore(init.lua): comment out debug plugin
* feat(init.lua): enable auto_install for nvim-treesitter
* feat(custom/plugins/init.lua): add bufdelete.nvim plugin to custom plugins list
2023-04-03 11:45:59 +07:00

13 lines
183 B
Lua

vim.opt.relativenumber = true
vim.opt.expandtab = true
vim.opt.smarttab = true
vim.opt.incsearch = true
vim.opt.scrolloff = 8
vim.opt.colorcolumn = "80"
vim.opt.swapfile = false