Initial commit for astronvim v4 configuration

This commit is contained in:
Xavier Logerais
2025-03-02 19:31:06 +01:00
committed by xavier
parent 73890a9ca5
commit dbe1a472b2
29 changed files with 938 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
-- This will run last in the setup process and is a good place to configure
-- things like custom filetypes. This just pure lua so anything that doesn't
-- fit in the normal config locations above can go here
-- Set up custom autocmds
require("custom.autocmds")
-- Set up custom filetypes
require("custom.filetypes")
--- Remove some mappings in terminal mode
--- that should have been set by other plugins
--- but that are very annoying
vim.keymap.del("t", "<C-l>") -- INFO: Clear the terminal
vim.keymap.del("t", "<C-j>") -- INFO: Move a commit up/down in LazyGit
vim.keymap.del("t", "<C-k>") -- INFO: Move a commit up/down in LazyGit
--- NOTE: : Maybe related to the smart-splits plugin