vim optins

This commit is contained in:
godot 2024-04-15 22:41:15 +02:00
parent 2a84277592
commit 1298d39c9c

View File

@ -45,3 +45,11 @@ vim.keymap.set('n', '<C-p>', builtin.find_files, {}) -- telescope find --
-- vim.keymap.set('n', '<C-o>', builtin.live_grep, {}) -- I dont know what this is doing? --
vim.keymap.set('n', '<C-m>', ':Neotree filesystem toggle left<CR>', {})
-- Vim options --
vim.opt.nu = true -- line numbers
vim.opt.tabstop = 4 -- how big is tab
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4