added current nvim-kickstart plugins here
This commit is contained in:
parent
e28883d50a
commit
b382585803
9
lua/custom/plugins/barbar.lua
Normal file
9
lua/custom/plugins/barbar.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
'romgrk/barbar.nvim',
|
||||
config = function()
|
||||
require('barbar').setup()
|
||||
vim.keymap.set('n', '<Tab>', ':BufferNext<CR>', { silent = true })
|
||||
vim.keymap.set('n', '<S-Tab>', ':BufferPrevious<CR>', { silent = true })
|
||||
vim.keymap.set('n', '<leader>x', ':BufferClose<CR>', { silent = true })
|
||||
end,
|
||||
}
|
116
lua/custom/plugins/image.lua
Normal file
116
lua/custom/plugins/image.lua
Normal file
|
@ -0,0 +1,116 @@
|
|||
-- https://github.com/3rd/image.nvim
|
||||
--
|
||||
-- Filename: ~/github/dotfiles-latest/neovim/nvim-lazyvim/lua/plugins/image-nvim.lua
|
||||
-- ~/github/dotfiles-latest/neovim/nvim-lazyvim/lua/plugins/image-nvim.lua
|
||||
|
||||
-- For dependencies see
|
||||
-- `~/github/dotfiles-latest/neovim/nvim-lazyvim/README.md`
|
||||
--
|
||||
-- -- Uncomment the following 2 lines if you use the local luarocks installation
|
||||
-- -- Leave them commented to instead use `luarocks.nvim`
|
||||
-- -- instead of luarocks.nvim
|
||||
-- Notice that in the following 2 commands I'm using luaver
|
||||
-- package.path = package.path
|
||||
-- .. ";"
|
||||
-- .. vim.fn.expand("$HOME")
|
||||
-- .. "/.luaver/luarocks/3.11.0_5.1/share/lua/5.1/magick/?/init.lua"
|
||||
-- package.path = package.path
|
||||
-- .. ";"
|
||||
-- .. vim.fn.expand("$HOME")
|
||||
-- .. "/.luaver/luarocks/3.11.0_5.1/share/lua/5.1/magick/?.lua"
|
||||
--
|
||||
-- -- Here I'm not using luaver, but instead installed lua and luarocks directly through
|
||||
-- -- homebrew
|
||||
-- package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua"
|
||||
-- package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua"
|
||||
|
||||
return {
|
||||
{
|
||||
-- luarocks.nvim is a Neovim plugin designed to streamline the installation
|
||||
-- of luarocks packages directly within Neovim. It simplifies the process
|
||||
-- of managing Lua dependencies, ensuring a hassle-free experience for
|
||||
-- Neovim users.
|
||||
-- https://github.com/vhyrro/luarocks.nvim
|
||||
'vhyrro/luarocks.nvim',
|
||||
-- this plugin needs to run before anything else
|
||||
priority = 1001,
|
||||
opts = {
|
||||
rocks = { 'magick' },
|
||||
},
|
||||
},
|
||||
{
|
||||
'3rd/image.nvim',
|
||||
dependencies = { 'luarocks.nvim' },
|
||||
config = function()
|
||||
require('image').setup {
|
||||
backend = 'kitty',
|
||||
kitty_method = 'normal',
|
||||
integrations = {
|
||||
-- Notice these are the settings for markdown files
|
||||
markdown = {
|
||||
enabled = true,
|
||||
clear_in_insert_mode = false,
|
||||
-- Set this to false if you don't want to render images coming from
|
||||
-- a URL
|
||||
download_remote_images = true,
|
||||
-- Change this if you would only like to render the image where the
|
||||
-- cursor is at
|
||||
-- I set this to true, because if the file has way too many images
|
||||
-- it will be laggy and will take time for the initial load
|
||||
only_render_image_at_cursor = true,
|
||||
-- markdown extensions (ie. quarto) can go here
|
||||
filetypes = { 'markdown', 'vimwiki' },
|
||||
-- TRYING
|
||||
resolve_image_path = function(document_path, image_path, fallback)
|
||||
return fallback(document_path, image_path)
|
||||
end,
|
||||
-- END TRYING
|
||||
},
|
||||
neorg = {
|
||||
enabled = true,
|
||||
clear_in_insert_mode = false,
|
||||
download_remote_images = true,
|
||||
only_render_image_at_cursor = false,
|
||||
filetypes = { 'norg' },
|
||||
},
|
||||
-- This is disabled by default
|
||||
-- Detect and render images referenced in HTML files
|
||||
-- Make sure you have an html treesitter parser installed
|
||||
-- ~/github/dotfiles-latest/neovim/nvim-lazyvim/lua/plugins/treesitter.lua
|
||||
html = {
|
||||
enabled = true,
|
||||
},
|
||||
-- This is disabled by default
|
||||
-- Detect and render images referenced in CSS files
|
||||
-- Make sure you have a css treesitter parser installed
|
||||
-- ~/github/dotfiles-latest/neovim/nvim-lazyvim/lua/plugins/treesitter.lua
|
||||
css = {
|
||||
enabled = true,
|
||||
},
|
||||
},
|
||||
max_width = nil,
|
||||
max_height = nil,
|
||||
max_width_window_percentage = nil,
|
||||
|
||||
-- This is what I changed to make my images look smaller, like a
|
||||
-- thumbnail, the default value is 50
|
||||
-- max_height_window_percentage = 20,
|
||||
max_height_window_percentage = 40,
|
||||
|
||||
-- toggles images when windows are overlapped
|
||||
window_overlap_clear_enabled = false,
|
||||
window_overlap_clear_ft_ignore = { 'cmp_menu', 'cmp_docs', '' },
|
||||
|
||||
-- auto show/hide images when the editor gains/looses focus
|
||||
editor_only_render_when_focused = true,
|
||||
|
||||
-- auto show/hide images in the correct tmux window
|
||||
-- In the tmux.conf add `set -g visual-activity off`
|
||||
tmux_show_only_in_active_window = true,
|
||||
|
||||
-- render image files as images when opened
|
||||
hijack_file_patterns = { '*.png', '*.jpg', '*.jpeg', '*.gif', '*.webp', '*.avif' },
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
21
lua/custom/plugins/lualine.lua
Normal file
21
lua/custom/plugins/lualine.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
'nvim-lualine/lualine.nvim',
|
||||
config = function()
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = '|',
|
||||
disabled_filetypes = {
|
||||
'packer',
|
||||
'NvimTree',
|
||||
'barbar',
|
||||
'lua',
|
||||
'c',
|
||||
},
|
||||
},
|
||||
sections = {},
|
||||
}
|
||||
--require('lualine').hide { place = { 'statusline' }, unhide = false }
|
||||
end,
|
||||
}
|
20
lua/custom/plugins/nvimtree.lua
Normal file
20
lua/custom/plugins/nvimtree.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
'nvim-tree/nvim-tree.lua',
|
||||
config = function()
|
||||
vim.keymap.set('n', '<leader>n', ':NvimTreeToggle<CR>', { silent = true })
|
||||
require('nvim-tree').setup {
|
||||
sort = {
|
||||
sorter = 'case_sensitive',
|
||||
},
|
||||
view = {
|
||||
width = 30,
|
||||
},
|
||||
renderer = {
|
||||
group_empty = true,
|
||||
},
|
||||
filters = {
|
||||
dotfiles = true,
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
6
lua/custom/plugins/nvterm.lua
Normal file
6
lua/custom/plugins/nvterm.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'NvChad/nvterm',
|
||||
config = function()
|
||||
require('nvterm').setup()
|
||||
end,
|
||||
}
|
26
lua/custom/plugins/obsidian.lua
Normal file
26
lua/custom/plugins/obsidian.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
'epwalsh/obsidian.nvim',
|
||||
version = '*',
|
||||
lazy = true,
|
||||
ft = 'markdown',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
},
|
||||
opts = {
|
||||
workspaces = {
|
||||
{
|
||||
name = 'work',
|
||||
path = '~/notes-work',
|
||||
},
|
||||
{
|
||||
name = 'personal',
|
||||
path = '~/notes-personal',
|
||||
},
|
||||
},
|
||||
templates = {
|
||||
folder = '~/notes-templates',
|
||||
date_format = '%Y-%m-%d',
|
||||
time_format = '%H:%M',
|
||||
},
|
||||
},
|
||||
}
|
6
lua/custom/plugins/toggleterm.lua
Normal file
6
lua/custom/plugins/toggleterm.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'akinsho/toggleterm.nvim',
|
||||
config = function()
|
||||
require('toggleterm').setup()
|
||||
end,
|
||||
}
|
6
lua/custom/plugins/transparent.lua.off
Normal file
6
lua/custom/plugins/transparent.lua.off
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'xiyaowong/transparent.nvim',
|
||||
config = function()
|
||||
require('transparent').clear_prefix 'lualine'
|
||||
end,
|
||||
}
|
Loading…
Reference in New Issue
Block a user