From 2a898f8ae89c6dec84ee7daa45ccfde4f57ea6e3 Mon Sep 17 00:00:00 2001 From: nouamanlamrahi Date: Tue, 29 Apr 2025 22:23:09 +0200 Subject: [PATCH] Added some shortcuts --- init.lua | 5 +++++ lua/custom/plugins/init.lua | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 905aaefa..d7d0eaf6 100644 --- a/init.lua +++ b/init.lua @@ -121,6 +121,11 @@ end) -- Enable break indent vim.opt.breakindent = true +-- Tab behaviour +vim.opt.tabstop = 4 +vim.opt.shiftwidth = 4 +vim.opt.expandtab = true + -- Save undo history vim.opt.undofile = true diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index be0eb9d8..61662fae 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -1,4 +1,4 @@ --- You can add your own plugins here or in other files in this directory! +-- ou can add your own plugins here or in other files in this directory! -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information