This commit is contained in:
elkowar 2021-04-23 18:09:31 +02:00
parent b8af6c5cc3
commit cf8f859174
4 changed files with 8 additions and 3 deletions

View file

@ -31,7 +31,10 @@
(if (~= remapped-space.old "")
(utils.keymap :i :<Space> remapped-space.old {:buffer true}))
(set remapped-space nil))))
(nvim.command "autocmd! InsertLeave * :call v:lua.UnbindSpaceStuff()")
(utils.keymap :n "<Tab>j" ":call v:lua.RebindShit('_')<CR>")

View file

@ -101,4 +101,4 @@
(utils.highlight "LspSagaDiagnosticHeader" {:fg "#8ec07c"})
(utils.highlight "TargetWord" {:fg "#8ec07c"})
(set nvim.o.signcolumn "yes")
(set vim.o.signcolumn "yes")

View file

@ -88,5 +88,5 @@ utils.highlight("LspSagaCodeActionContent", {fg = "#8ec07c"})
utils.highlight("LspSagaFinderSelection", {fg = "#8ec07c"})
utils.highlight("LspSagaDiagnosticHeader", {fg = "#8ec07c"})
utils.highlight("TargetWord", {fg = "#8ec07c"})
nvim.o.signcolumn = "yes"
vim.o.signcolumn = "yes"
return nil

View file

@ -32,6 +32,8 @@ require("packer").startup(function(use)
-- general purpose lua wrappers for nvim stuff
use "norcalli/nvim.lua"
use "akinsho/nvim-bufferline.lua"
use "tweekmonster/startuptime.vim"
use "tpope/vim-repeat"