add more plugins
This commit is contained in:
parent
f0ef247331
commit
1c83d4dab0
7 changed files with 68 additions and 14 deletions
|
@ -29,7 +29,7 @@ require("lazy").setup({
|
|||
},
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "habamax" } },
|
||||
install = { colorscheme = { "neopywal" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = true },
|
||||
})
|
||||
|
|
|
@ -3,6 +3,7 @@ local o = vim.o
|
|||
local g = vim.g
|
||||
|
||||
o.laststatus = 3
|
||||
o.showmode = false
|
||||
o.clipboard = "unnamedplus"
|
||||
o.cursorline = true
|
||||
o.cursorlineopt = "number"
|
||||
|
@ -31,10 +32,14 @@ o.splitbelow = true
|
|||
o.termguicolors = true
|
||||
|
||||
opt.shortmess:append "sI"
|
||||
opt.whichwrap:append "<>[]hl"
|
||||
opt.fillchars = { eob = " " }
|
||||
|
||||
o.updatetime = 250
|
||||
|
||||
opt.whichwrap:append "<>[]hl"
|
||||
o.ignorecase = true
|
||||
o.incsearch = true
|
||||
o.smartcase = true
|
||||
o.mouse = "a"
|
||||
|
||||
g.loaded_node_provider = 0
|
||||
g.loaded_python3_provider = 0
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
return {
|
||||
{
|
||||
"RedsXDD/neopywal.nvim",
|
||||
name = "neopywal",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
}
|
||||
}
|
11
lua/plugins/neotree.lua
Normal file
11
lua/plugins/neotree.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- "3rd/image.nvim", -- Optional see `# Preview Mode` for more information
|
||||
}
|
||||
}
|
||||
}
|
30
lua/plugins/ui.lua
Normal file
30
lua/plugins/ui.lua
Normal file
|
@ -0,0 +1,30 @@
|
|||
return {
|
||||
{
|
||||
"RedsXDD/neopywal.nvim",
|
||||
name = "neopywal",
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
-- Lua status-bar
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = { left = "|", right = "|"},
|
||||
section_separators = { left = "", right = ""},
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
opts = function()
|
||||
return require "config.plugins.treesitter"
|
||||
end,
|
||||
config = function(_, opts)
|
||||
require("nvim-treesitter.configs").setup(opts)
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue