neovim update

This commit is contained in:
RafayAhmad7548 2025-12-30 12:48:55 +05:00
parent db8dccebc7
commit 97c4626cf2
Signed by: RafayAhmad
SSH key fingerprint: SHA256:WURX8viobA1uawb4dWM3LqYrY+XPcZcXhAXAlrYdhtE
3 changed files with 12 additions and 2 deletions

View file

@ -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

View file

@ -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',

View file

@ -27,7 +27,8 @@ return {
'tsx',
'prisma',
'regex',
'kotlin'
'kotlin',
'java',
},
auto_install = false,
highlight = { enable = true, },