changed keybinds, removed unnecesarry modules and shit

This commit is contained in:
voidarclabs
2025-07-21 18:19:58 +01:00
parent 8c39a02b9b
commit a8b45494d2
6 changed files with 14 additions and 78 deletions

View File

@@ -9,7 +9,7 @@ return {
config = function()
require("mason").setup()
require("mason-lspconfig").setup({
ensure_installed = { "lua_ls", "pyright", "rust_analyzer", "eslint" }, -- Add your desired LSPs
ensure_installed = { "ts_ls", "lua_ls", "pyright", "rust_analyzer", "eslint" }, -- Add your desired LSPs
automatic_installation = true,
})

View File

@@ -1,10 +0,0 @@
return {
{
"ibhagwan/fzf-lua",
-- optional for icon support
dependencies = { "nvim-tree/nvim-web-devicons" },
-- or if using mini.icons/mini.nvim
-- dependencies = { "echasnovski/mini.icons" },
opts = {},
},
}

View File

@@ -1,59 +0,0 @@
return {
{
"matbme/JABS.nvim",
config = function()
require("jabs").setup({
-- Options for the main window
position = { "center", "top" }, -- position = {'<position_x>', '<position_y>'} | <position_x> left, center, right,
-- <position_y> top, center, bottom
-- Default {'right', 'bottom'}
relative = "editor", -- win, editor, cursor. Default win
clip_popup_size = false, -- clips the popup size to the win (or editor) size. Default true
width = 80, -- default 50
height = 20, -- default 10
border = "single", -- none, single, double, rounded, solid, shadow, (or an array or chars). Default shadow
offset = { -- window position offset
top = 4, -- default 0
bottom = 2, -- default 0
left = 2, -- default 0
right = 2, -- default 0
},
sort_mru = true, -- Sort buffers by most recently used (true or false). Default false
split_filename = true, -- Split filename into separate components for name and path. Default false
split_filename_path_width = 20, -- If split_filename is true, how wide the column for the path is supposed to be, Default 0 (don't show path)
-- Options for preview window
preview_position = "left", -- top, bottom, left, right. Default top
preview = {
width = 40, -- default 70
height = 60, -- default 30
border = "rounded", -- none, single, double, rounded, solid, shadow, (or an array or chars). Default double
},
-- Default highlights (must be a valid :highlight)
highlight = {
current = "Title", -- default StatusLine
hidden = "StatusLineNC", -- default ModeMsg
split = "WarningMsg", -- default StatusLine
alternate = "StatusLine", -- default WarningMsg
},
-- Default symbols
keymap = {
close = "<c-d>", -- Close buffer. Default D
jump = "<cr>", -- Jump to buffer. Default <cr>
h_split = "h", -- Horizontally split buffer. Default s
v_split = "v", -- Vertically split buffer. Default v
preview = "p", -- Open buffer preview. Default P
},
-- Whether to use nvim-web-devicons next to filenames
use_devicons = true, -- true or false. Default true
})
end,
},
}

View File

@@ -10,7 +10,6 @@ return {
})
require("mini.pairs").setup()
require("mini.files").setup()
require("mini.statusline").setup()
require("mini.cursorword").setup({
content = {
active = true,

View File

@@ -6,6 +6,7 @@ return {
opts = {
bigfile = { enabled = true },
picker = {},
dashboard = {
enabled = true,
width = 100,