https://github.com/ray-x/cmp-sql
SQL keywords for cmp
https://github.com/ray-x/cmp-sql
nvim-cmp psql sql
Last synced: 8 months 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T06:55:50.000Z (almost 2 years ago)
- Last Synced: 2025-04-08T04:12:11.374Z (12 months ago)
- Topics: nvim-cmp, psql, sql
- Language: Lua
- Homepage:
- Size: 23.4 KB
- Stars: 19
- 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' }
}
}
```