Commit Graph

4 Commits

Author SHA1 Message Date
Abdulrahman Sheikho 3419c4bd27 feat: add terminal QoL stuff, keymaps & autocmd. 2026-04-25 14:14:34 +03:00
Abdulrahman Sheikho 73cfe47848 tweaks: renames, typos, and other stuff. 2026-04-21 06:58:37 +03:00
Abdulrahman Sheikho 721ef79eda setup: add ui config with transparent bg
This commit also setup highlight for EOF-char & Window-Separator to
match the highlight on Cursor-Line-Number. And sets auto-command
to reset colors after changing the colorscheme.
2026-03-11 00:33:15 +03:00
Abdulrahman Sheikho f9b07ed072 refactor: `init.lua` into modular layout
init.lua
lua/
├── core/
│   ├── autocommands.lua
│   ├── diagnostics.lua
│   ├── globals.lua
│   ├── init.lua
│   ├── keymaps.lua
│   ├── lazy-nvim.lua
│   └── options.lua
└── plugins/
    ├── blink.lua
    ├── conform.lua
    ├── gitsigns.lua
    ├── guess-indent.lua
    ├── mini.lua
    ├── nvim-lspconfig.lua
    ├── nvim-treesitter.lua
    ├── telescope.lua
    ├── todo-comments.lua
    ├── tokyonight.lua
    └── which-key.lua
2026-03-07 12:38:31 +03:00