initial commit
This commit is contained in:
15
pipktop/nvim/lua/plugins/filetree.lua
Normal file
15
pipktop/nvim/lua/plugins/filetree.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
-- Unless you are still migrating, remove the deprecated commands from v1.x
|
||||
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
|
||||
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
},
|
||||
config = function ()
|
||||
require('neo-tree').setup {}
|
||||
end,
|
||||
}
|
5
pipktop/nvim/lua/plugins/init.lua
Normal file
5
pipktop/nvim/lua/plugins/init.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
24
pipktop/nvim/lua/plugins/java.lua.old
Normal file
24
pipktop/nvim/lua/plugins/java.lua.old
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
return {
|
||||
"nvim-java/nvim-java",
|
||||
config = false,
|
||||
dependencies = {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
jdtls = {
|
||||
-- your jdtls configuration goes here
|
||||
},
|
||||
},
|
||||
setup = {
|
||||
jdtls = function()
|
||||
require("java").setup({
|
||||
-- your nvim-java configuration goes here
|
||||
})
|
||||
end,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user