nvim: format w/ stylua

This commit is contained in:
Price Hiller 2022-06-02 20:29:48 -05:00
parent f6ea0c9d19
commit c51753bdaa
7 changed files with 13 additions and 14 deletions

View File

@ -1,4 +1,3 @@
local file_loc = vim.fn.expand('%:p:h')
vim.opt.makeprg = "docker build " .. file_loc
vim.opt.makeprg = 'docker build ' .. file_loc

View File

@ -1,5 +1,5 @@
local loaded, impatient = pcall(require, 'impatient')
if loaded then
impatient.enable_profile()
impatient.enable_profile()
end
require('main')

View File

@ -1,6 +1,6 @@
local M = {}
M.setup = function ()
M.setup = function()
-- NOTE: Remove trailing whitespace on save
vim.api.nvim_create_autocmd('BufWritePre', {
command = '%s/\\s\\+$//e',

View File

@ -1,6 +1,6 @@
vim.api.nvim_create_autocmd("BufWrite", {
pattern = "*",
callback = function ()
vim.api.nvim_create_autocmd('BufWrite', {
pattern = '*',
callback = function()
vim.cmd('lua vim.lsp.buf.format({ async = true })')
end
end,
})

View File

@ -6,8 +6,8 @@ neotree.setup({
use_libuv_file_watcher = true,
window = {
mappings = {
["/"] = ""
}
}
['/'] = '',
},
},
},
})

View File

@ -514,8 +514,8 @@ return packer.startup({
require('neogit').setup({
integrations = {
disable_commit_confirmation = true,
diffview = true
}
diffview = true,
},
})
end,
requires = {

View File

@ -7,7 +7,7 @@ U.map = function(mode, lhs, rhs, opts)
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end
U.buffer_map = function (mode, lhs, rhs, opts)
U.buffer_map = function(mode, lhs, rhs, opts)
local options = { noremap = true, silent = true }
if opts then
options = vim.tbl_extend('force', options, opts)