Compare commits
2 Commits
Windows
...
e9488d5948
Author | SHA1 | Date | |
---|---|---|---|
e9488d5948
|
|||
0c2a2236a5
|
@ -17,6 +17,8 @@
|
|||||||
"nvim-dap": { "branch": "master", "commit": "405df1dcc2e395ab5173a9c3d00e03942c023074" },
|
"nvim-dap": { "branch": "master", "commit": "405df1dcc2e395ab5173a9c3d00e03942c023074" },
|
||||||
"nvim-dap-ui": { "branch": "master", "commit": "edfa93f60b189e5952c016eee262d0685d838450" },
|
"nvim-dap-ui": { "branch": "master", "commit": "edfa93f60b189e5952c016eee262d0685d838450" },
|
||||||
"nvim-dap-virtual-text": { "branch": "master", "commit": "baa5b0dc6663284cce32e0d00ac1f2511b13496f" },
|
"nvim-dap-virtual-text": { "branch": "master", "commit": "baa5b0dc6663284cce32e0d00ac1f2511b13496f" },
|
||||||
|
"nvim-emmet": { "branch": "main", "commit": "928cfb74ed436d6d326ccab2061cf3592de1bf55" },
|
||||||
|
"nvim-highlight-colors": { "branch": "main", "commit": "d711574ebbafec60ca063320c339705287abc00f" },
|
||||||
"nvim-jdtls": { "branch": "master", "commit": "8eb5f0dbe6e126b392ddcaf45893358619893e45" },
|
"nvim-jdtls": { "branch": "master", "commit": "8eb5f0dbe6e126b392ddcaf45893358619893e45" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "24662f92c18edd397ef12d635b11dbdedef2d094" },
|
"nvim-lspconfig": { "branch": "master", "commit": "24662f92c18edd397ef12d635b11dbdedef2d094" },
|
||||||
"nvim-nio": { "branch": "master", "commit": "33c62b3eadd8154169e42144de16ba4db6784bec" },
|
"nvim-nio": { "branch": "master", "commit": "33c62b3eadd8154169e42144de16ba4db6784bec" },
|
||||||
|
9
lua/barink/plugins/highlight-colors.lua
Normal file
9
lua/barink/plugins/highlight-colors.lua
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
'brenoprata10/nvim-highlight-colors',
|
||||||
|
config = function ()
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
require("nvim-highlight-colors").setup({})
|
||||||
|
end
|
||||||
|
}
|
||||||
|
}
|
@ -15,6 +15,12 @@ return
|
|||||||
version = "v2.*",
|
version = "v2.*",
|
||||||
},
|
},
|
||||||
{'mfussenegger/nvim-jdtls', dependencies = {'nvim-dap'}},
|
{'mfussenegger/nvim-jdtls', dependencies = {'nvim-dap'}},
|
||||||
|
{
|
||||||
|
"olrtg/nvim-emmet",
|
||||||
|
config = function()
|
||||||
|
vim.keymap.set({ "n", "v" }, '<leader>xe', require('nvim-emmet').wrap_with_abbreviation)
|
||||||
|
end,
|
||||||
|
}
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
@ -77,6 +83,9 @@ return
|
|||||||
})
|
})
|
||||||
|
|
||||||
local lsp = require("lspconfig")
|
local lsp = require("lspconfig")
|
||||||
|
|
||||||
|
lsp.emmet_language_server.setup({})
|
||||||
|
|
||||||
lsp.lua_ls.setup({
|
lsp.lua_ls.setup({
|
||||||
capabilities = require('cmp_nvim_lsp').default_capabilities(),
|
capabilities = require('cmp_nvim_lsp').default_capabilities(),
|
||||||
settings = {
|
settings = {
|
||||||
|
Reference in New Issue
Block a user