
* 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
13 lines
183 B
Lua
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
|