12 lines
523 B
Lua
12 lines
523 B
Lua
-- Options are automatically loaded before lazy.nvim startup
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
-- Add any additional options here
|
|
vim.g.mapleader = "\\"
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = true
|
|
|
|
-- LazyVim overwrote `i_CTRL-K` default functionality of inserting a digraph
|
|
-- to LSP signature help. This setting unlocks the alternate keymap of
|
|
-- `{char1}{BS}{char2}` to insert digraphs.
|
|
vim.opt.digraph = true
|