Compare commits

..

No commits in common. "b0d189b52967dc03ed909ef681777758e5a0e975" and "8f4735c4a35c7b3d582c307111b7a1ff2dcaa6aa" have entirely different histories.

View File

@ -15,8 +15,6 @@ vim.opt.cursorcolumn = true
vim.opt.cursorline = true
vim.opt.so = 8
vim.opt.wildmode = {'list:longest'}
vim.opt.splitbelow = true
vim.opt.splitright = true
vim.g.editorconfig = false
local holtrop_bufread_group = vim.api.nvim_create_augroup("holtrop_bufread_group", { clear = true })
@ -38,8 +36,7 @@ vim.api.nvim_create_autocmd({ "BufReadPost", "BufNewFile" }, {
})
-- Shortcuts
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]])
vim.cmd([[map f<C-s> :FzfLua combine pickers=buffers,files<CR>]])
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,files<CR>]])
vim.cmd([[inoremap <C-Enter> <Esc>O]])
vim.cmd([[vnoremap < <gv]])
vim.cmd([[vnoremap > >gv]])