Made files nonexecutable

This commit is contained in:
agryphus 2023-09-08 16:46:55 -04:00
parent 5767f9fcda
commit 332ff948ed
15 changed files with 12 additions and 1 deletions

0
after/ftplugin/html.lua Executable file → Normal file
View file

0
after/plugin/colors.lua Executable file → Normal file
View file

0
after/plugin/comment.lua Executable file → Normal file
View file

0
after/plugin/firenvim.lua Executable file → Normal file
View file

0
after/plugin/lsp.lua Executable file → Normal file
View file

0
after/plugin/nvimtree.lua Executable file → Normal file
View file

0
after/plugin/telescope.lua Executable file → Normal file
View file

0
after/plugin/treesitter.lua Executable file → Normal file
View file

4
after/plugin/vimtex.lua Executable file → Normal file
View file

@ -6,7 +6,7 @@ let g:maplocalleader=' '
let g:vimtex_view_method='zathura'
let g:tex_flavor='latex'
let g:vimtex_quickfix_mode=0
set conceallevel=1
set conceallevel=0
let g:tex_conceal='abdmg'
let g:vimtex_view_forward_search_on_start=0 " Weird highlighting otherwise
@ -17,3 +17,5 @@ augroup END
]])

0
after/syntax/asm.vim Executable file → Normal file
View file

0
after/syntax/lua.vim Executable file → Normal file
View file

0
lua/andrew/init.lua Executable file → Normal file
View file

6
lua/andrew/packer.lua Executable file → Normal file
View 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
View 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
View file