Compare commits

..

No commits in common. "2a95778f1fbd2a0526b979f230e198426ada0802" and "66662aac5142da9bdb97a2c2cf7662a138ad9487" have entirely different histories.

3 changed files with 13 additions and 4 deletions

View File

@ -22,6 +22,7 @@ vim.api.nvim_create_autocmd('User', {
require 'config.autocmd' require 'config.autocmd'
require 'dressing' require 'dressing'
require 'NeoSwap' require 'NeoSwap'
require 'nvim-peekup'
end, end,
}) })

View File

@ -1,5 +1,5 @@
return { return {
'freddiehaddad/feline.nvim', 'feline-nvim/feline.nvim',
dependencies = { dependencies = {
'nvim-tree/nvim-web-devicons', 'nvim-tree/nvim-web-devicons',
}, },

View File

@ -1,11 +1,19 @@
return { return {
-- 'MunifTanjim/nui.nvim', 'MunifTanjim/nui.nvim',
'folke/which-key.nvim', 'folke/which-key.nvim',
'nvim-lua/plenary.nvim', 'nvim-lua/plenary.nvim',
-- 'mfussenegger/nvim-jdtls', -- 'mfussenegger/nvim-jdtls',
'simrat39/rust-tools.nvim', 'simrat39/rust-tools.nvim',
{ 'mg979/vim-visual-multi', event = 'VeryLazy' }, { 'mg979/vim-visual-multi', event = 'VeryLazy' },
{ 'rush-rs/tree-sitter-asm', ft = 'asm' }, { 'rush-rs/tree-sitter-asm', ft = 'asm' },
{
'gennaro-tedesco/nvim-peekup',
config = function()
local c = require 'nvim-peekup.config'
c.on_keystroke['delay'] = ''
c.on_keystroke['paste_reg'] = '+'
end
},
{ 'jghauser/mkdir.nvim', lazy = false }, { 'jghauser/mkdir.nvim', lazy = false },
{ {
'stevearc/dressing.nvim', 'stevearc/dressing.nvim',
@ -14,7 +22,7 @@ return {
}, },
{ {
url = 'https://git.filnar.com/fiplox/neogruber.git', url = 'https://git.filnar.com/fiplox/neogruber.git',
-- dir = '~/share/dev/neogruber.nvim/', -- dir = '~/dev/neogruber.nvim/',
lazy = false, lazy = false,
-- event = 'VeryLazy' -- event = 'VeryLazy'
}, },
@ -162,7 +170,7 @@ return {
diffview = true, diffview = true,
}, },
-- Setting any section to `false` will make the section not render at all -- Setting any section to `false` will make the section not render at all
section = { sections = {
untracked = { untracked = {
folded = false, folded = false,
}, },