neovim update
This commit is contained in:
parent
db8dccebc7
commit
97c4626cf2
3 changed files with 12 additions and 2 deletions
|
|
@ -28,6 +28,7 @@ vim.keymap.set('n', '<C-w>', ':bd<CR>', { desc = 'save and close', nowait = true
|
|||
-- delete word in insert mode
|
||||
vim.keymap.set('i', '<C-BS>', '<C-w>', { desc = 'delete word in insert mode' })
|
||||
|
||||
vim.keymap.set('n', '<leader>t', '<cmd>silent !kitty . &<CR>', { desc = 'open kitty in pwd' })
|
||||
|
||||
|
||||
-- INFO: Right Dock: Terminal & MiniOilFiles
|
||||
|
|
|
|||
|
|
@ -139,7 +139,15 @@ return {
|
|||
end
|
||||
},
|
||||
|
||||
{ 'mason-org/mason.nvim', opts = {} },
|
||||
-- { 'mason-org/mason.nvim', opts = {} },
|
||||
{
|
||||
"mason-org/mason.nvim",
|
||||
config = function()
|
||||
require("mason").setup({
|
||||
log_level = vim.log.levels.DEBUG,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
'mason-org/mason-lspconfig.nvim',
|
||||
|
|
|
|||
|
|
@ -27,7 +27,8 @@ return {
|
|||
'tsx',
|
||||
'prisma',
|
||||
'regex',
|
||||
'kotlin'
|
||||
'kotlin',
|
||||
'java',
|
||||
},
|
||||
auto_install = false,
|
||||
highlight = { enable = true, },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue