reformatted lua files to follow a single standard

This commit is contained in:
2023-03-13 20:43:34 +00:00
parent 92cec18df3
commit ac53964865
11 changed files with 52 additions and 51 deletions

View File

@ -1,2 +1,2 @@
require("luke-else.packer")
require("luke-else.set")
require('luke-else.packer')
require('luke-else.set')

View File

@ -20,12 +20,12 @@ return require('packer').startup(function(use)
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
use('theprimeagen/harpoon')
use("mbbill/undotree")
use("tpope/vim-fugitive")
use('mbbill/undotree')
use('tpope/vim-fugitive')
use {
"windwp/nvim-autopairs",
config = function() require("nvim-autopairs").setup {} end
'windwp/nvim-autopairs',
config = function() require('nvim-autopairs').setup {} end
}
use {
@ -52,5 +52,6 @@ return require('packer').startup(function(use)
}
-- Debugger
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap"} }
use 'nvim-lua/plenary.nvim'
use { 'rcarriga/nvim-dap-ui', requires = {'mfussenegger/nvim-dap'} }
end)

View File

@ -12,7 +12,7 @@ vim.opt.wrap = false
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undodir = os.getenv('HOME') .. '/.vim/undodir'
vim.opt.undofile = true
vim.opt.hlsearch = false
@ -21,7 +21,7 @@ vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes"
vim.opt.isfname:append("@-@")
vim.opt.signcolumn = 'yes'
vim.opt.isfname:append('@-@')
vim.opt.updatetime = 50