Made files nonexecutable
This commit is contained in:
parent
5767f9fcda
commit
332ff948ed
15 changed files with 12 additions and 1 deletions
0
lua/andrew/init.lua
Executable file → Normal file
0
lua/andrew/init.lua
Executable file → Normal file
6
lua/andrew/packer.lua
Executable file → Normal file
6
lua/andrew/packer.lua
Executable file → Normal file
|
|
@ -3,6 +3,12 @@ vim.cmd.packadd("packer.nvim")
|
|||
return require("packer").startup(function(use)
|
||||
use "wbthomason/packer.nvim"
|
||||
|
||||
-- Org mode
|
||||
use {
|
||||
"nvim-neorg/neorg",
|
||||
run = ":Neorg sync-parsers",
|
||||
}
|
||||
|
||||
-- Find files and strings
|
||||
use {
|
||||
"nvim-telescope/telescope.nvim", tag = "0.1.0",
|
||||
|
|
|
|||
3
lua/andrew/remap.lua
Executable file → Normal file
3
lua/andrew/remap.lua
Executable file → Normal file
|
|
@ -6,6 +6,9 @@ vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)
|
|||
-- centers cursor when jumping up and down page
|
||||
vim.keymap.set("n", "<C-d>", "<C-d>zz")
|
||||
vim.keymap.set("n", "<C-u>", "<C-u>zz")
|
||||
vim.keymap.set("n", "J", "mzJ`z")
|
||||
vim.keymap.set("n", "n", "nzzzv")
|
||||
vim.keymap.set("n", "N", "Nzzzv")
|
||||
|
||||
-- easier escape back to normal mode
|
||||
vim.keymap.set("i", "<C-c>", "<Esc>")
|
||||
|
|
|
|||
0
lua/andrew/set.lua
Executable file → Normal file
0
lua/andrew/set.lua
Executable file → Normal file
Loading…
Add table
Add a link
Reference in a new issue