Compare commits
7
Commits
main
...
ff99797242
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff99797242 | ||
|
|
a8413849cf | ||
|
|
fd10af115e | ||
|
|
c56f1242df | ||
|
|
250a960698 | ||
|
|
13e9b0f458 | ||
|
|
195fe4ae72 |
+2
-3
@@ -88,8 +88,7 @@ A fuzzy file finder, picker, sorter, previewer and much more:
|
|||||||
|
|
||||||
- Many beautiful themes, theme toggler by our [base46 plugin](https://github.com/NvChad/base46)
|
- Many beautiful themes, theme toggler by our [base46 plugin](https://github.com/NvChad/base46)
|
||||||
- Inbuilt terminal toggling & management with [Nvterm](https://github.com/NvChad/nvterm)
|
- Inbuilt terminal toggling & management with [Nvterm](https://github.com/NvChad/nvterm)
|
||||||
- NvChad updater, hide & unhide terminal buffers with [NvChad extensions](https://github.com/NvChad/extensions)
|
- Lightweight & performant ui plugin with [NvChad UI](https://github.com/NvChad/ui) It provides statusline modules, tabufline ( tabs + buffer manager) , beautiful cheatsheets, NvChad updater, hide & unhide terminal buffers, theme switcher and much more!
|
||||||
- Lightweight & performant ui plugin with [NvChad UI](https://github.com/NvChad/ui) It provides statusline modules, tabufline ( tabs + buffer manager) , beautiful cheatsheets and much more!
|
|
||||||
- File navigation with [nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)
|
- File navigation with [nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)
|
||||||
- Beautiful and configurable icons with [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
|
- Beautiful and configurable icons with [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
|
||||||
- Git diffs and more with [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
|
- Git diffs and more with [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
|
||||||
@@ -113,7 +112,7 @@ A fuzzy file finder, picker, sorter, previewer and much more:
|
|||||||
If you like NvChad and would like to support & appreciate it via donation then I'll gladly accept it.
|
If you like NvChad and would like to support & appreciate it via donation then I'll gladly accept it.
|
||||||
|
|
||||||
[](https://ko-fi.com/siduck)
|
[](https://ko-fi.com/siduck)
|
||||||
[](https://paypal.me/siduck76)
|
[](https://paypal.me/siduck13)
|
||||||
[](https://www.buymeacoffee.com/siduck)
|
[](https://www.buymeacoffee.com/siduck)
|
||||||
[](https://www.patreon.com/siduck)
|
[](https://www.patreon.com/siduck)
|
||||||
|
|
||||||
|
|||||||
@@ -7,3 +7,4 @@ coc-settings.json
|
|||||||
.luarc.json
|
.luarc.json
|
||||||
lazy-lock.json
|
lazy-lock.json
|
||||||
after
|
after
|
||||||
|
**/.DS_Store
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ M.lazy = function(install_path)
|
|||||||
-- install plugins
|
-- install plugins
|
||||||
require "plugins"
|
require "plugins"
|
||||||
|
|
||||||
-- mason packages & show post_boostrap screen
|
-- mason packages & show post_bootstrap screen
|
||||||
require "nvchad.post_install"()
|
require "nvchad.post_install"()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ M.general = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
n = {
|
n = {
|
||||||
["<Esc>"] = { ":noh <CR>", "Clear highlights" },
|
["<Esc>"] = { "<cmd> noh <CR>", "Clear highlights" },
|
||||||
-- switch between windows
|
-- switch between windows
|
||||||
["<C-h>"] = { "<C-w>h", "Window left" },
|
["<C-h>"] = { "<C-w>h", "Window left" },
|
||||||
["<C-l>"] = { "<C-w>l", "Window right" },
|
["<C-l>"] = { "<C-w>l", "Window right" },
|
||||||
@@ -193,7 +193,7 @@ M.lspconfig = {
|
|||||||
"LSP references",
|
"LSP references",
|
||||||
},
|
},
|
||||||
|
|
||||||
["<leader>f"] = {
|
["<leader>lf"] = {
|
||||||
function()
|
function()
|
||||||
vim.diagnostic.open_float { border = "rounded" }
|
vim.diagnostic.open_float { border = "rounded" }
|
||||||
end,
|
end,
|
||||||
|
|||||||
@@ -252,7 +252,7 @@ local default_plugins = {
|
|||||||
-- Only load whichkey after all the gui
|
-- Only load whichkey after all the gui
|
||||||
{
|
{
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
keys = { "<leader>", "<c-r>", '"', "'", "`", "c", "v", "g" },
|
keys = { "<leader>", "<c-r>", "<c-w>", '"', "'", "`", "c", "v", "g" },
|
||||||
init = function()
|
init = function()
|
||||||
require("core.utils").load_mappings "whichkey"
|
require("core.utils").load_mappings "whichkey"
|
||||||
end,
|
end,
|
||||||
|
|||||||
Reference in New Issue
Block a user