all repos

init.lua @ fa7596070e261ced47272e5ded63b2f903f85701

my nvim config
1 files changed, 7 insertions(+), 0 deletions(-)
feat(ftplugin): add settings for shells
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-11-03 13:39:52 +0200
Parent: 0baf044
A after/ftplugin/sh.lua

@@ -0,0 +1,7 @@

+local map = require("core.utils").map + +vim.opt_local.tabstop = 2 +vim.opt_local.shiftwidth = 2 +vim.opt_local.softtabstop = 2 + +map("n", "<leader>x", ":!chmod +x %<CR><CR>")