Compare commits

..

No commits in common. "4b3e0236e0e5470c0b09546942b65edb500cd15c" and "455eae15228a6d45b87fb6337bd89256de1c1912" have entirely different histories.

3 changed files with 1 additions and 8 deletions

View File

@ -28,4 +28,3 @@ global.neoformat_basic_format_trim = 1
-- leader settings
global.mapleader = ' '
global.glow_border = "rounded"

View File

@ -15,7 +15,6 @@ vim.api.nvim_set_keymap('', '<A-K>', '<C-w>K', {})
vim.api.nvim_set_keymap('', '<A-L>', '<C-w>L', {})
vim.api.nvim_set_keymap('', '<A->>', '<C-w>>', {})
vim.api.nvim_set_keymap('', '<A-<>', '<C-w><', {})
vim.api.nvim_set_keymap('', '<A-T>', '<C-w>T', {})
-- undo to the last , . or !
vim.api.nvim_set_keymap('i', ',', ',<c-g>u', {noremap = true})
vim.api.nvim_set_keymap('i', '.', '.<c-g>u', {noremap = true})

View File

@ -162,9 +162,4 @@ return require('packer').startup(function(use)
-- integrations
use {"tpope/vim-fugitive", cmd = "G"}
use {
"JuanCldCmt/glow.nvim",
branch = 'main',
cmd = {"Glow", "GlowInstall"}
}
end)