mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
Added
This commit is contained in:
parent
9932734876
commit
ad580eeac2
2 changed files with 8 additions and 1 deletions
|
|
@ -22,6 +22,12 @@ vim.o.foldlevelstart = 99
|
|||
-- Init Snippets
|
||||
vim.g.snipMate = { snippet_version = 1 }
|
||||
|
||||
-- Remaps
|
||||
vim.api.nvim_set_keymap('n', '<PageUp>', '<PageUp>zz', {noremap = true})
|
||||
vim.api.nvim_set_keymap('n', '<PageDown>', '<PageDown>zz', {noremap = true})
|
||||
vim.api.nvim_set_keymap('n', '<C-U>', '<C-U>zz', {noremap = true})
|
||||
vim.api.nvim_set_keymap('n', '<C-D>', '<C-D>zz', {noremap = true})
|
||||
|
||||
-- Load packer.nvim
|
||||
local packer_install_path = vim.fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
|
||||
if vim.fn.empty(vim.fn.glob(packer_install_path)) > 0 then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue