mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-04-21 18:05:50 +00:00
Updated Neovim config to lua, cleaned up unneccecary plugins
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
-- Set leader key to Space
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
-- Load basic settings
|
||||
require("config.options")
|
||||
require("config.keymaps")
|
||||
|
||||
-- Load plugins (lazy.nvim will be auto-installed)
|
||||
require("config.plugins")
|
||||
|
||||
-- Plugin-specific configuration
|
||||
require("config.lsp")
|
||||
require("config.treesitter")
|
||||
require("config.telescope")
|
||||
require("config.cmp")
|
||||
Reference in New Issue
Block a user