Abdulrahman Sheikho
d13bb6d168
modify: experimenting with moving away from telescope
...
This is still an experiment.
I'm trying to move away from telescope, but I still use extensions
like `telescope-undo.lua`, which makes me unsure entirely of the switch.
That's why I'm commenting out the config part, while also lazy-loading it.
2026-04-03 21:13:41 +03:00
Abdulrahman Sheikho
924edac0c9
add-plugin: tiny-inline-diagnostic.nvim
...
also, delete `lua/core/diagnostics.lua`, and move some of its
content (the one that are still related) to `tiny-inline-diagnostic`
2026-03-12 18:58:26 +03:00
Abdulrahman Sheikho
6e2afa1cde
add-plugin: lualine.nvim
...
also remove `mini.statusline` and add new Glyphs
2026-03-12 18:55:47 +03:00
Abdulrahman Sheikho
dc8156c52c
setup: add icons
...
additionally set `which-key` to have `helix` look.
2026-03-12 10:52:09 +03:00
Abdulrahman Sheikho
17ab7642dd
setup: config lsp & nvim-lspconfig
...
- add registries to mason.nvim.
- set a table for `Langs.lsp`.
- extract `lua_ls` config into `after/lsp` directory.
2026-03-11 00:37:22 +03:00
Abdulrahman Sheikho
1c8bed24cd
setup: formatters, linters, tree-sitters
2026-03-11 00:36:51 +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
7a52a46ad4
setup: add keymaps
...
This commit also resolve keymap conflict that happens with `<leader>q`
2026-03-08 08:14:30 +03:00
Abdulrahman Sheikho
b6b171e414
setup: add options
2026-03-08 08:14:07 +03:00
Abdulrahman Sheikho
9471bfdedc
merge: lua/kickstart/plugins with lua/plugins
2026-03-08 08:07:22 +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