change leader key to space
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 9m9s
Build neovim image / build-neovim-arm64 (push) Successful in 10m48s
Build neovim image / update-images-manifest (push) Successful in 20s

This commit is contained in:
Maciej Lebiest 2024-11-07 12:22:42 +01:00 committed by Maciej Lebiest
parent 5c5b92ebf0
commit b5ce3421e4

View file

@ -77,6 +77,7 @@ vim.opt.tabstop = 4 -- number of columns occupied by a tab
vim.opt.softtabstop = 4 -- see multiple spaces as tabstops so <BS> does the right thing vim.opt.softtabstop = 4 -- see multiple spaces as tabstops so <BS> does the right thing
vim.opt.expandtab = true -- converts tabs to white space vim.opt.expandtab = true -- converts tabs to white space
vim.opt.shiftwidth = 4 -- width for autoindents vim.opt.shiftwidth = 4 -- width for autoindents
vim.g.mapleader = " "
vim.filetype.add({ vim.filetype.add({
extension = { extension = {
sls = "sls.yaml.jinja", sls = "sls.yaml.jinja",