chore: run stylua
This commit is contained in:
parent
d8cac4e77f
commit
183e3d2d50
|
@ -1,5 +1,4 @@
|
|||
vim.api.nvim_create_autocmd({ 'BufEnter, BufWinEnter' },
|
||||
{ command = 'set colorcolumn=120,80,88', pattern = { '*.py', '*.pyi' } })
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter, BufWinEnter' }, { command = 'set colorcolumn=120,80,88', pattern = { '*.py', '*.pyi' } })
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter, BufWinEnter' }, { command = 'set colorcolumn=80,100', pattern = { '*.rs' } })
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter, BufWinEnter' }, { command = 'set splitright', pattern = { '*' } })
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter, BufWinEnter' }, { command = 'set splitbelow', pattern = { '*' } })
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
function leave_snippet()
|
||||
if
|
||||
((vim.v.event.old_mode == 's' and vim.v.event.new_mode == 'n') or vim.v.event.old_mode == 'i')
|
||||
and require('luasnip').session.current_nodes[vim.api.nvim_get_current_buf()]
|
||||
and not require('luasnip').session.jump_active
|
||||
((vim.v.event.old_mode == 's' and vim.v.event.new_mode == 'n') or vim.v.event.old_mode == 'i')
|
||||
and require('luasnip').session.current_nodes[vim.api.nvim_get_current_buf()]
|
||||
and not require('luasnip').session.jump_active
|
||||
then
|
||||
require('luasnip').unlink_current()
|
||||
end
|
||||
|
|
|
@ -24,22 +24,22 @@ return {
|
|||
-- NOTE: Second, plugins that require setup call (done via opts)
|
||||
|
||||
-- Useful plugin to show you pending keybinds.
|
||||
{ 'folke/which-key.nvim', opts = {} },
|
||||
{ 'folke/which-key.nvim', opts = {} },
|
||||
|
||||
-- "gc" to comment visual regions/lines
|
||||
{ 'numToStr/Comment.nvim', opts = {} },
|
||||
{ 'numToStr/Comment.nvim', opts = {} },
|
||||
|
||||
-- colorize in files
|
||||
{ 'norcalli/nvim-colorizer.lua', opts = {} },
|
||||
|
||||
-- autopairs on newline
|
||||
{ 'windwp/nvim-autopairs', opts = {} },
|
||||
{ 'windwp/nvim-autopairs', opts = {} },
|
||||
|
||||
-- highlighting for comments
|
||||
{ 'folke/todo-comments.nvim', dependencies = 'nvim-lua/plenary.nvim', opts = {} },
|
||||
{ 'folke/todo-comments.nvim', dependencies = 'nvim-lua/plenary.nvim', opts = {} },
|
||||
|
||||
-- cargo crates
|
||||
{ 'saecki/crates.nvim', dependencies = 'nvim-lua/plenary.nvim', opts = {} },
|
||||
{ 'saecki/crates.nvim', dependencies = 'nvim-lua/plenary.nvim', opts = {} },
|
||||
|
||||
-- newage search plugin
|
||||
{
|
||||
|
@ -123,8 +123,7 @@ return {
|
|||
end,
|
||||
config = function()
|
||||
vim.api.nvim_set_keymap('n', '<leader>gt', ':GitBlameToggle<CR>', { desc = '[G]it Blame [T]oggle', noremap = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>gu', ':GitBlameOpenCommitURL<CR>',
|
||||
{ desc = '[G]it Blame Open Commit [U]rl', noremap = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>gu', ':GitBlameOpenCommitURL<CR>', { desc = '[G]it Blame Open Commit [U]rl', noremap = true })
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
|
@ -89,8 +89,7 @@ return {
|
|||
|
||||
-- extensions
|
||||
vim.api.nvim_set_keymap('n', '<leader>tc', ':TodoTelescope<CR>', { desc = '[T]odo [c]omments', noremap = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>hm', ':Telescope harpoon marks<CR>',
|
||||
{ desc = '[H]arpoon [m]arks', noremap = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>hm', ':Telescope harpoon marks<CR>', { desc = '[H]arpoon [m]arks', noremap = true })
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue