├── .tmux.conf ├── Microsoft.PowerShell_profile.ps1 ├── config.fish ├── init.lua ├── lazy-lock.json ├── lua └── aymen │ ├── core │ ├── init.lua │ ├── keymaps.lua │ └── options.lua │ ├── lazy.lua │ └── plugins │ ├── alpha.lua │ ├── auto-session.lua │ ├── autopairs.lua │ ├── bufferline.lua │ ├── colorscheme.lua │ ├── comment.lua │ ├── dressing.lua │ ├── formatting.lua │ ├── gitsigns.lua │ ├── indent-blankline.lua │ ├── init.lua │ ├── lazygit.lua │ ├── linting.lua │ ├── lsp │ ├── lspconfig.lua │ └── mason.lua │ ├── lualine.lua │ ├── nvim-cmp.lua │ ├── nvim-tree.lua │ ├── nvim-treesitter-text-objects.lua │ ├── substitute.lua │ ├── surround.lua │ ├── telescope.lua │ ├── todo-comments.lua │ ├── trouble.lua │ ├── vim-maximizer.lua │ └── which-key.lua └── readme.md /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/config.fish -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/init.lua -------------------------------------------------------------------------------- /lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lazy-lock.json -------------------------------------------------------------------------------- /lua/aymen/core/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/core/init.lua -------------------------------------------------------------------------------- /lua/aymen/core/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/core/keymaps.lua -------------------------------------------------------------------------------- /lua/aymen/core/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/core/options.lua -------------------------------------------------------------------------------- /lua/aymen/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/lazy.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/alpha.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/alpha.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/auto-session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/auto-session.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/autopairs.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/bufferline.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/colorscheme.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/comment.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/dressing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/dressing.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/formatting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/formatting.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/gitsigns.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/indent-blankline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/indent-blankline.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/init.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/lazygit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/lazygit.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/linting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/linting.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/lsp/lspconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/lsp/lspconfig.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/lsp/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/lsp/mason.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/lualine.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/nvim-cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/nvim-cmp.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/nvim-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/nvim-tree.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/nvim-treesitter-text-objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/nvim-treesitter-text-objects.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/substitute.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/substitute.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/surround.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/surround.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/telescope.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/todo-comments.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/todo-comments.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/trouble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/trouble.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/vim-maximizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/vim-maximizer.lua -------------------------------------------------------------------------------- /lua/aymen/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/lua/aymen/plugins/which-key.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymenSakouhi/dotfiles/HEAD/readme.md --------------------------------------------------------------------------------