add some custom stuff
This commit is contained in:
parent
8d1ef972bc
commit
464fc8ac81
3 changed files with 20 additions and 8 deletions
2
lua/custom/keymaps.lua
Normal file
2
lua/custom/keymaps.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
vim.keymap.set('n', '<leader>sv', '<C-w>v', { desc = 'Open verticle split' })
|
||||
vim.keymap.set('n', '<leader>sh', '<C-w>h', { desc = 'Open horizontal split' })
|
||||
6
lua/custom/options.lua
Normal file
6
lua/custom/options.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
local opt = vim.opt
|
||||
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue