siduck
a894ced767
add cmd to compile nvchad theme
2022-11-17 21:32:55 +05:30
Akianonymus
2b41bcd3df
core: Move relavent tabufline code to NvChad/ui repo
2022-08-25 17:44:35 +05:30
Akianonymus
a23d955656
plugins: alpha: Move alpha related cmd to alpha config
...
this special handling of statusline should only be done if alpha plugin is used
2022-08-25 17:44:35 +05:30
Akianonymus
fe9a7b1651
core|options: Add formatoptions in options | Remove unnecessary autocmd
2022-08-25 17:44:35 +05:30
Akianonymus
9021289421
core: autocmd: Remove 'tabdo wincmd =' on VimResized
...
this should not be in main config, not every one wants their splits to be of equal size on resize, sometimes i want the split to of smaller size whether the screen is resized or not
this should be in used custom dir
2022-08-25 17:44:35 +05:30
Sébastien Elet
a67e19a439
feat(init): resize panes when vim window is resized
...
Signed-off-by: Sébastien Elet <sebastien@elet.fr>
2022-08-20 10:16:11 +05:30
nullchilly
b3d3c5a7dd
Don't load packer at startup
2022-08-07 15:46:45 +05:30
Lilin Lao
8eb56b6644
Fix windows env path separator
...
Fix: mason installed binaries path appended to env.PATH when os is windows, the env path separator is ";".
2022-07-26 12:54:12 +05:30
siduck
a83ebc34e5
Breaking Change : LSPInstaller is dead so use mason.nvim
...
(#1368 )
2022-07-25 13:49:33 +00:00
siduck
6f0aa376a8
set shiftwidth to 2 | format all files
...
big thanks to @ghifarit53
2022-07-22 16:00:00 +00:00
siduck
74f2efca9f
BREAKING Change for statusline_separator & tabufline overriders
...
moved statusline & tabufline into a new plugin to keep the base config clean and fix issues like (#1307 )
2022-07-15 09:37:12 +05:30
Sidhanth Rathod
86b3b6e96b
Dont list quickfix buffers #1310
2022-07-08 19:20:57 +05:30
siduck
7654a1fc8c
allow showing of buffer in a different tab if its already opened in another tab #1297
2022-07-01 06:27:40 +05:30
siduck
33550e9587
add options for tabufline : enabled, lazyload, override | fix ( #1274 )
2022-06-27 07:16:33 +05:30
siduck
62b9c09f44
fix tabufline crash when formatting buf | ( #1265 )
2022-06-26 06:24:52 +05:30
siduck
876295ec02
rm misleading field name for tabufline in default_config
2022-06-25 11:21:50 +05:30
siduck
845d5b4866
write own lightweight tabufline | remove bufferline
2022-06-24 19:24:59 +05:30
Leon Heidelbach
7bb3afbb96
feat: add warning message when using PackerSync on snapshot branches
2022-06-20 01:30:42 +02:00
siduck
a99a789f74
fix #1223
2022-06-18 14:25:23 +05:30
siduck
9bca3eacae
clean config | fix ( #1225 ) ( #1226 )
2022-06-18 09:57:17 +05:30
Leon Heidelbach
92082d64e5
feat: (BETA release) NvChadSnapshots are here. Look at the pinned issue for more information!
2022-06-16 20:00:54 +02:00
siduck
aabf8ca225
make lspsignature window float above the cursor to avoid cmp overlapping
...
special thanks to https://www.reddit.com/r/neovim/comments/vbsryc/comment/icehk2c/?utm_source=share&utm_medium=web2x&context=3
2022-06-15 07:26:10 +05:30
siduck
5ee4f93309
clean readme | rm outdated info & update img links
2022-06-09 08:45:28 +05:30
Waldir Borba Junior
1b4ac82718
Update init.lua
2022-06-06 18:33:04 +05:30
siduck
48b1226961
write own statusline | remove feline
2022-06-05 19:11:26 +05:30
siduck
a2ff5c285e
avoid un-needed lazy loading of packer | improve packer bootstrapping
2022-05-23 12:54:03 +05:30
siduck
8de3f4e84c
restructure init.lua | lspconfig
2021-11-14 06:49:33 +05:30
siduck
c8a27d701c
cleanup!
2021-11-13 21:59:31 +05:30
Akianonymus
d810cc35a7
chore: format files
2021-10-02 11:24:14 +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
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