Galen Rowell
9961cc0113
refactor: clean & re-organise default_config + chadrc
...
this completely overhauls the design of the two configuration files,
aiming to move options & various tables into a more sensible table structure
BREAKING CHANGE: this will break any user modificiations to the current
config
2021-09-24 19:11:55 +05:30
Galen Rowell
80c8bf4243
feat: allow packaged plugin config overrides within chadrc
2021-09-24 19:11:55 +05:30
Morten Olsen
bfc10e6034
feat: Add custom scripts and hook based setup
...
This commit introduces a hook system that allows the user to add custom
modules which can use these hooks to invoke function af specific NvChad
events to allow for extending og functionality
2021-09-24 19:11:55 +05:30
Galen Rowell
ca1ad15ad2
refactor: Cleaning chadrc, moved to custom & moved default_config to core
2021-09-24 19:11:55 +05:30
siduck76
22f89cfeef
Revert "remove cheatsheet.nvim for now"
...
This reverts commit f3fe3d46c8
.
2021-09-24 18:31:42 +05:30
siduck76
f3fe3d46c8
remove cheatsheet.nvim for now
2021-09-24 18:22:04 +05:30
siduck76
0b30ed27d5
replace better-escape.vim with better-escape.nvim
2021-09-22 21:26:30 +05:30
siduck76
cafd078e8f
fix esc_insertmode settings not getting applied in chadrc ( #422 )
2021-09-10 16:21:54 +05:30
siduck76
4c025cd1bf
debloat config | remove lspinstall
2021-09-10 15:40:54 +05:30
Ashin Antony
3d6d429793
feat: Move treesitter branch to compat-0.5
...
If you want to use this plugin with Neovim 0.5, please use the 0.5-compat branch. Be aware though that most improvements will require neovim nightly.
https://github.com/nvim-treesitter/nvim-treesitter
2021-09-09 07:15:31 +05:30
siduck76
d1777dfbdf
load friendly-snippets before nvim-cmp
2021-09-07 07:07:39 +05:30
siduck76
873b846d50
disable dashboard by default
2021-09-02 09:45:28 +05:30
siduck76
5db010e870
mv luasnip config to others.lua
2021-08-28 09:39:38 +05:30
Akianonymus
a1c103b6a8
lsp: Reload current buffer after startup
...
so lsp aftually starts for the current buffer, rest buffers are fine
2021-08-27 10:20:57 +05:30
siduck76
c87482f107
lazy load luasnip after cmp
2021-08-27 08:11:46 +05:30
siduck76
647c3730ae
clean up
2021-08-27 07:56:44 +05:30
siduck76
253047747a
remove lspkind
2021-08-27 07:53:06 +05:30
siduck76
475a4c5f38
replace compe with cmp
2021-08-27 06:44:58 +05:30
Akianonymus
adf0168dcc
plugins: More lazy load, yay
...
use vim.defer_fn to load the plugins after entering the ui
add the lazy load to setup
lazy load gitsigns, neoscroll, lspinstall and vim-matchup using this method
rearrange according to startup sequence
2021-08-26 19:41:27 +05:30
siduck76
21b2680e56
Merge branch 'main' of github.com:NvChad/NvChad
2021-08-26 10:48:17 +05:30
ashincoder
7d8f6b85c7
feat: Load lspkind on insert event.
2021-08-26 10:51:16 +05:30
siduck76
80d36cca00
move to feline.nvim
2021-08-26 10:48:13 +05:30
siduck76
bf3e9a323f
make gitsigns plugin load on dir containing .git only
2021-08-24 15:37:38 +05:30
Noah Lidell
fba26a3a40
commands to load fugitive
2021-08-24 09:05:06 +05:30
siduck76
ac83f1d580
add mapping to focus nvimtree (349)
2021-08-23 16:44:52 +05:30
Akianonymus
a28a838c06
NvChad/core -> Nvchad/extensions
2021-08-22 17:54:10 +05:30
Akianonymus
ef40dfcbc1
plugins: Properly lazy load telescope
...
from packer docs
module = string or list -- Specifies Lua module names for require. When requiring a string which starts
-- with one of these module names, the plugin will be loaded.
2021-08-22 17:54:10 +05:30
Akianonymus
9ffddb6b52
Restructure config | Move some to a packer plugin | Lot of cleanup
...
* move teleacope files, updater and related utils to
https://github.com/NvChad/core
* restructure config file and directory structure
* expose mappings for better escape
* allow multiple mappings for some
* improve merge table function for the same
* move autocommands to a seperate file
* rearrange everything alphabetically where sanely possible
* rearrange packer plugin list on the basis of trigerred state
config structure now
.
├── init.lua
├── LICENSE
├── lua
│ ├── chadrc.lua
│ ├── colors
│ │ ├── highlights.lua
│ │ ├── init.lua
│ │ └── themes
│ │ ├── chadracula.lua
│ │ ├── everforest.lua
│ │ ├── gruvchad.lua
│ │ ├── javacafe.lua
│ │ ├── mountain.lua
│ │ ├── norchad.lua
│ │ ├── one-light.lua
│ │ ├── onedark.lua
│ │ ├── tokyonight.lua
│ │ └── tomorrow-night.lua
│ ├── core
│ │ ├── autocmds.lua
│ │ ├── init.lua
│ │ ├── mappings.lua
│ │ ├── options.lua
│ │ └── utils.lua
│ ├── default_config.lua
│ └── plugins
│ ├── configs
│ │ ├── autopairs.lua
│ │ ├── autosave.lua
│ │ ├── bufferline.lua
│ │ ├── chadsheet.lua
│ │ ├── compe.lua
│ │ ├── dashboard.lua
│ │ ├── gitsigns.lua
│ │ ├── icons.lua
│ │ ├── lspconfig.lua
│ │ ├── luasnip.lua
│ │ ├── nvimtree.lua
│ │ ├── others.lua
│ │ ├── statusline.lua
│ │ ├── telescope.lua
│ │ ├── treesitter.lua
│ │ └── zenmode.lua
│ ├── init.lua
│ └── packerInit.lua
└── README.md
2021-08-22 17:54:10 +05:30