use ruff, add commands.lua back

This commit is contained in:
Michael Peters 2024-03-20 21:52:01 -07:00
parent 5cbdc51e55
commit ba228de63c
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,18 @@
-- Insert PDB breakpoint
vim.api.nvim_create_user_command('PDB', 'norm obreakpoint() # michael', {})
vim.api.nvim_create_user_command('BP', 'norm obreakpoint() # michael', {})
-- Copy Relative File Path to Clipboard
vim.api.nvim_create_user_command('C', 'let @+ = expand("%:~:.")', {})
local function gitblame_toggle_summary()
local normal = '<author> • <date>'
local with_summary = '<summary> • <author> • <date>'
if vim.g.gitblame_message_template == normal then
vim.g.gitblame_message_template = with_summary
else
vim.g.gitblame_message_template = normal
end
end
vim.api.nvim_create_user_command('GitBlameToggleSummary', gitblame_toggle_summary, {})

View File

@ -15,7 +15,8 @@ local function config()
-- TODO: ruff format, depending on the project
python = {
fmt_python.isort,
fmt_python.black,
fmt_python.ruff,
-- fmt_python.black,
},
-- sudo npm i -g fixjson
json = { fmt_json.fixjson },