fix(mappings): fix leader key for realz
This commit is contained in:
parent
55eaa0feed
commit
b377cf8c09
2 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,9 @@
|
|||
-- Override Cosmic editor options
|
||||
|
||||
--[[
|
||||
local opt = vim.opt
|
||||
local g = vim.g
|
||||
|
||||
g.mapleader = ','
|
||||
|
||||
opt.tabstop = 4
|
||||
opt.softtabstop = 4
|
||||
|
|
|
@ -2,7 +2,6 @@ require('cosmic.disabled')
|
|||
require('cosmic.pluginsInit')
|
||||
require('cosmic.compiled')
|
||||
require('cosmic.editor')
|
||||
require('cosmic.mappings')
|
||||
|
||||
do
|
||||
local ok, err = pcall(require, 'cosmic.config.editor')
|
||||
|
@ -11,6 +10,8 @@ do
|
|||
end
|
||||
end
|
||||
|
||||
require('cosmic.mappings')
|
||||
|
||||
do
|
||||
local ok, err = pcall(require, 'cosmic.config.mappings')
|
||||
if not ok then
|
||||
|
|
Loading…
Add table
Reference in a new issue