Zohir Benghalem
617dca4dc1
add fzf telescope extension to improve sorting performance ( #2371 )
...
* add fzf telescope extension to improve sorting performance
* add fzf config tbl to the default tlsc config
2023-09-09 06:43:28 +05:30
siduck
a2690a4b72
avoid loading cached highlights in plugin opts file
2023-02-18 14:26:40 +05:30
siduck
6590372791
BREAKING CHANGE: utilize lazy.nvim fully, remove un-needed functions
2023-02-18 09:46:51 +05:30
siduck
4990b23935
use dofile to load cached theme files
2023-01-29 21:36:54 +05:30
siduck
2b94bb92e0
clean config & rm un-needed pcalls
2023-01-25 20:11:55 +05:30
siduck
d27029d1b1
load base46_cache in instead of minified modules
2022-11-19 11:45:33 +05:30
siduck
f77d052d70
change highlight loading function name
2022-11-17 19:26:43 +05:30
siduck
44b238ad0b
add arg to make telescope search through symlink dirs
...
#1609
2022-10-07 19:26:07 +05:30
siduck
6f0aa376a8
set shiftwidth to 2 | format all files
...
big thanks to @ghifarit53
2022-07-22 16:00:00 +00:00
Sabu Siyad
d327582dc0
telescope: remove deprecated option: `use_less`
2022-06-22 14:03:22 +05:30
siduck
0bde81a074
Improve startuptime | remove un-needed plugins | lazy load plugin highlights too
...
removed nvim-gps as nvim-navic or winbar.nvim will be added when v0.8 neovim releases. Removed lsp signature as I was able to emulate showing args with the default signature help() window
2022-06-14 17:36:27 +05:30
siduck
cb97cef2a7
remove usage of globals for util functions
2022-05-29 16:07:47 +05:30
siduck
0844431d37
breaking change : re-implement custom mappings | simplify it | add whichkey
...
fixes #1057 , #1047
2022-05-12 18:26:01 +05:30
vlaw
4fa0b4ae7d
feat(config): configs for telescope extensions
2022-05-11 07:55:07 +05:30
Arman.H
5a1240be82
refactor: add utils to the global scope
2022-05-10 20:15:08 +05:30
Akianonymus
08a16b9201
telescope: Add mapping to close picker with q in normal mode
2022-05-09 10:49:21 +05:30
siduck
adecbe719f
BREAKING CHANGE | re-implementation of custom config
2022-04-27 21:12:28 +05:30
Akianonymus
bccd8e4ab9
utils: Improve override functions | Fix nvimtree and statusline config |
...
Misc
* make more things configurable
* use more generic variable names
* handle some edgecases
* cleanup
* format files
2022-01-22 10:15:38 +05:30
zbirenbaum
c3beea11ee
Added support for modifying specific key values in default configs via chadrc to all plugin configurations with setup table(s)
2022-01-22 10:15:38 +05:30
siduck
9551ce7031
rm telescope-media-files.nvim!
...
it heavily relies on xorg so doesnt fully work on linux!, forget about macos,windows. Added a basic config doc for it here : https://nvchad.github.io/Extras#telescope-media-filesnvim
2022-01-01 17:30:42 +05:30
siduck
abe720b881
remove telescope fzf-native.nvim plugin
2022-01-01 16:24:19 +05:30
siduck
84c3a18fab
include telescope highlights for transparency
2021-12-04 21:38:30 +05:30
siduck
3330d1cc06
clean up!
2021-11-17 11:00:57 +05:30
github-actions[bot]
1658bf9fc6
chore: format source code
2021-09-19 14:36:13 +00:00
ayushjaipuriyar21@gmail.com
c84f3cd6cf
ignore node_module folder in telescope
2021-09-19 20:05:58 +05:30
siduck76
56ea1714f6
fix packer compile spam on startup ( #325 )
2021-08-30 11:48:52 +05:30
siduck76
6fbb503a16
use ascending sorting : telescope ( #346 )
2021-08-23 17:15:29 +05:30
Akianonymus
bf3d4b31a6
Missed in previous commit
2021-08-22 17:58:48 +05:30
Akianonymus
a82f71334f
telescope-media: Check if ueberzug is available before loading the extension
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