Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ray-x/cmp-sql
SQL keywords for cmp
https://github.com/ray-x/cmp-sql
nvim-cmp psql sql
Last synced: about 1 month ago
JSON representation
SQL keywords for cmp
- Host: GitHub
- URL: https://github.com/ray-x/cmp-sql
- Owner: ray-x
- License: gpl-3.0
- Created: 2024-05-15T14:35:06.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-05-16T06:55:50.000Z (6 months ago)
- Last Synced: 2024-09-28T18:02:53.356Z (about 2 months ago)
- Topics: nvim-cmp, psql, sql
- Language: Lua
- Homepage:
- Size: 23.4 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cmp-sql
nvim-cmp source for sql keywords. It includes 800+ sql keywords (with postgresql keywords extensions)
Useful when editing sql without db connection# Setup
```lua
require'cmp'.setup {
sources = {
{ name = 'sql' }
}
}
```