Compare commits
21 Commits
87aa445764
...
feature/up
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
65ffd3275b | ||
|
|
24dc3916df | ||
|
|
0071aa4485 | ||
|
|
22352723cf | ||
|
|
c1cddfdf68 | ||
|
|
62a52c1c01 | ||
|
|
3d8e976741 | ||
|
|
3096929bd4 | ||
|
|
cc56142c99 | ||
|
|
3cf01cefbd | ||
|
|
d79ca0b927 | ||
|
|
9e529ef0bb | ||
|
|
6738adc58b | ||
|
|
28410ecfab | ||
|
|
6919892952 | ||
|
|
cfe16ef1d0 | ||
|
|
831b80c1ab | ||
|
|
0c5942a85d | ||
|
|
420b30df3d | ||
|
|
d8bbe04dd9 | ||
|
|
a7f6d3067b |
83
DATABASE_SETUP_GUIDE.md
Normal file
83
DATABASE_SETUP_GUIDE.md
Normal file
@@ -0,0 +1,83 @@
|
||||
# Database Setup Guide
|
||||
|
||||
## Current Status: ✅ **FIXED**
|
||||
|
||||
The database error has been resolved! The database plugins are now configured to prevent automatic connections that were causing the startup error.
|
||||
|
||||
## What Was Fixed
|
||||
|
||||
1. **Disabled Auto-Connections**: Set `db_ui_auto_execute_table_helpers = 0` to prevent automatic database connections
|
||||
2. **Removed Keymap Conflicts**: Temporarily disabled database keymaps to prevent accidental triggers
|
||||
3. **Safe Configuration**: Database plugins are loaded but won't attempt to connect automatically
|
||||
|
||||
## To Re-Enable Database Functionality
|
||||
|
||||
When you want to use database features, you can:
|
||||
|
||||
### 1. Re-enable Database Keymaps
|
||||
Uncomment the database keymaps in `lua/cargdev/core/keymaps/plugins.lua`:
|
||||
|
||||
```lua
|
||||
-- Change from:
|
||||
-- keymap.set("n", "<leader>du", "<cmd>DBUI<CR>", { desc = "Open Database UI" })
|
||||
|
||||
-- To:
|
||||
keymap.set("n", "<leader>du", "<cmd>DBUI<CR>", { desc = "Open Database UI" })
|
||||
```
|
||||
|
||||
### 2. Manual Database Usage
|
||||
You can still use database features manually:
|
||||
|
||||
- **Open Database UI**: `:DBUI`
|
||||
- **Add Connection**: `:DBUIAddConnection`
|
||||
- **Execute SQL**: `:DBExecute`
|
||||
- **Format SQL**: `:SQLFormat`
|
||||
|
||||
### 3. Database Keymaps (when re-enabled)
|
||||
- **`<leader>du`** - Open Database UI
|
||||
- **`<leader>dua`** - Add database connection
|
||||
- **`<leader>due`** - Execute SQL query
|
||||
- **`<leader>dus`** - Select SQL query
|
||||
- **`<leader>dut`** - Create table
|
||||
- **`<leader>duf`** - Format SQL query
|
||||
|
||||
## Supported Databases
|
||||
|
||||
- **SQLite**: `sqlite3`
|
||||
- **MySQL**: `mysql`
|
||||
- **PostgreSQL**: `psql`
|
||||
- **Redis**: `redis-cli`
|
||||
|
||||
## Installation Requirements
|
||||
|
||||
Make sure you have the database clients installed:
|
||||
|
||||
```bash
|
||||
# macOS
|
||||
brew install mysql redis mongodb/brew/mongodb-community
|
||||
|
||||
# Ubuntu/Debian
|
||||
sudo apt install mysql-client postgresql-client redis-tools
|
||||
|
||||
# CentOS/RHEL
|
||||
sudo yum install mysql postgresql redis
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
If you encounter database errors again:
|
||||
|
||||
1. **Check for saved connections**: Look for `.dadbod` files in your project directories
|
||||
2. **Clear database cache**: Remove any saved database sessions
|
||||
3. **Verify adapters**: Ensure database clients are properly installed
|
||||
4. **Check keymaps**: Make sure there are no conflicting keymaps
|
||||
|
||||
## Current Configuration
|
||||
|
||||
The database plugins are configured with:
|
||||
- ✅ **No automatic connections**
|
||||
- ✅ **Manual trigger only**
|
||||
- ✅ **Proper adapters configured**
|
||||
- ✅ **No startup errors**
|
||||
|
||||
Your Neovim should now start cleanly without any database errors! 🎉
|
||||
189
LSP_TROUBLESHOOTING_GUIDE.md
Normal file
189
LSP_TROUBLESHOOTING_GUIDE.md
Normal file
@@ -0,0 +1,189 @@
|
||||
# LSP Troubleshooting and Performance Guide
|
||||
|
||||
## Overview
|
||||
This guide addresses the LSP errors and image freezing issues you've been experiencing during file searches in Neovim.
|
||||
|
||||
## Problems Solved
|
||||
|
||||
### 1. LSP Errors on Non-Text Files
|
||||
**Problem**: LSP servers were trying to process image files (PNG, SVG, etc.), video files, and other binary files, causing errors.
|
||||
|
||||
**Solution**: Added comprehensive file type filtering that prevents LSP from attaching to non-text files.
|
||||
|
||||
### 2. Image Freezing During Search
|
||||
**Problem**: When searching for files, image files would freeze the preview window indefinitely.
|
||||
|
||||
**Solution**: Enhanced Telescope configuration with file filtering and optimized preview settings.
|
||||
|
||||
### 3. Slow Leader Key Response
|
||||
**Problem**: Leader key commands (like `<leader>ff`, `<leader>fs`) were slow to respond.
|
||||
|
||||
**Solution**: Reduced timeout settings and optimized completion performance.
|
||||
|
||||
## New Keymaps
|
||||
|
||||
### Performance Monitoring
|
||||
- `<leader>pp` - Check overall performance
|
||||
- `<leader>po` - Check plugin performance
|
||||
- `<leader>pb` - Optimize current buffer
|
||||
|
||||
### LSP Troubleshooting
|
||||
- `<leader>pl` - Check LSP health
|
||||
- `<leader>pr` - Restart LSP for current buffer
|
||||
|
||||
### Safe File Searching (Recommended)
|
||||
- `<leader>ff` - Find files (safe - prevents LSP errors)
|
||||
- `<leader>fs` - Live grep (safe)
|
||||
- `<leader>fg` - Git files (safe)
|
||||
- `<leader>ft` - Text files only
|
||||
|
||||
### Regular Search (Use with Caution)
|
||||
- `<leader>fF` - Find files (all file types)
|
||||
|
||||
## File Types Automatically Filtered
|
||||
|
||||
### Images (Prevent LSP errors)
|
||||
- PNG, JPG, JPEG, GIF, SVG, ICO, BMP, WebP, TIFF, TGA
|
||||
|
||||
### Videos (Prevent freezing)
|
||||
- MP4, AVI, MOV, WMV, FLV, WebM, MKV, M4V, 3GP
|
||||
|
||||
### Audio (Prevent LSP errors)
|
||||
- MP3, WAV, FLAC, AAC, OGG, M4A, WMA
|
||||
|
||||
### Documents (Prevent LSP errors)
|
||||
- PDF, DOC, DOCX, XLS, XLSX, PPT, PPTX, ODT, ODS, ODP
|
||||
|
||||
### Archives (Prevent LSP errors)
|
||||
- ZIP, RAR, 7Z, TAR, GZ, BZ2, XZ, LZMA
|
||||
|
||||
### Binaries (Prevent LSP errors)
|
||||
- EXE, DLL, SO, DYLD, BIN, APP, DMG, DEB, RPM
|
||||
|
||||
### Other Problematic Files
|
||||
- LOCK, LOG, TMP, TEMP, CACHE, BAK, BACKUP
|
||||
|
||||
## Performance Optimizations Applied
|
||||
|
||||
### LSP Configuration
|
||||
- **File filtering**: Only text files get LSP services
|
||||
- **Error handling**: Graceful handling of LSP failures
|
||||
- **Timeouts**: 5-second timeout for LSP requests
|
||||
- **Debouncing**: 150ms debounce for text changes
|
||||
- **Diagnostics**: Reduced diagnostic updates
|
||||
|
||||
### Telescope Configuration
|
||||
- **File filtering**: Automatic exclusion of problematic files
|
||||
- **Preview optimization**: Disabled preview for non-text files
|
||||
- **Search optimization**: Skip heavy directories (node_modules, vendor, etc.)
|
||||
- **Performance flags**: Enhanced caching and sorting
|
||||
|
||||
### General Performance
|
||||
- **Reduced timeouts**: Faster leader key response
|
||||
- **Optimized scrolling**: Reduced scrolloff for smoother movement
|
||||
- **Memory management**: Better memory usage patterns
|
||||
- **Startup optimization**: Deferred heavy operations
|
||||
|
||||
## Troubleshooting Steps
|
||||
|
||||
### If You Still Experience LSP Errors
|
||||
|
||||
1. **Check LSP Health**
|
||||
```
|
||||
<leader>pl
|
||||
```
|
||||
|
||||
2. **Restart LSP for Current Buffer**
|
||||
```
|
||||
<leader>pr
|
||||
```
|
||||
|
||||
3. **Check Performance**
|
||||
```
|
||||
<leader>pp
|
||||
```
|
||||
|
||||
4. **Use Safe File Search**
|
||||
- Always use `<leader>ff` instead of `<leader>fF`
|
||||
- This prevents LSP from processing problematic files
|
||||
|
||||
### If Images Still Freeze
|
||||
|
||||
1. **Check File Extensions**
|
||||
- Ensure the file has a text-based extension
|
||||
- Use `<leader>ft` for text-only file search
|
||||
|
||||
2. **Optimize Current Buffer**
|
||||
```
|
||||
<leader>pb
|
||||
```
|
||||
|
||||
3. **Check Plugin Performance**
|
||||
```
|
||||
<leader>po
|
||||
```
|
||||
|
||||
## Advanced Configuration
|
||||
|
||||
### Custom File Filtering
|
||||
You can modify the file filtering in `lua/cargdev/plugins/lsp/lspconfig.lua`:
|
||||
|
||||
```lua
|
||||
local non_text_extensions = {
|
||||
-- Add or remove extensions as needed
|
||||
"png", "jpg", "jpeg", "gif", "svg",
|
||||
-- ... other extensions
|
||||
}
|
||||
```
|
||||
|
||||
### Telescope Customization
|
||||
Modify the file filter in `lua/cargdev/plugins/telescope.lua`:
|
||||
|
||||
```lua
|
||||
local function filter_files(entry)
|
||||
-- Customize filtering logic here
|
||||
local filename = entry.filename or entry.value
|
||||
-- ... your custom logic
|
||||
end
|
||||
```
|
||||
|
||||
## Best Practices
|
||||
|
||||
### 1. Always Use Safe Search
|
||||
- `<leader>ff` for file finding
|
||||
- `<leader>fs` for text searching
|
||||
- Avoid `<leader>fF` unless you specifically need all file types
|
||||
|
||||
### 2. Monitor Performance
|
||||
- Use `<leader>pp` regularly to check for issues
|
||||
- Monitor LSP health with `<leader>pl`
|
||||
|
||||
### 3. Optimize Large Files
|
||||
- Use `<leader>pb` for files over 10,000 lines
|
||||
- Consider disabling heavy features for very large files
|
||||
|
||||
### 4. Keep LSP Healthy
|
||||
- Restart LSP with `<leader>pr` if you experience issues
|
||||
- Check for LSP errors in the performance report
|
||||
|
||||
## Expected Results
|
||||
|
||||
After applying these optimizations:
|
||||
|
||||
- ✅ **No more LSP errors** on image/video/binary files
|
||||
- ✅ **No more image freezing** during file searches
|
||||
- ✅ **Faster leader key response** (reduced from 500ms to 200ms)
|
||||
- ✅ **Smoother scrolling** and UI performance
|
||||
- ✅ **Better memory usage** and startup times
|
||||
- ✅ **Automatic file type filtering** to prevent issues
|
||||
|
||||
## Support
|
||||
|
||||
If you continue to experience issues:
|
||||
|
||||
1. Run `<leader>pp` to get a detailed performance report
|
||||
2. Check LSP health with `<leader>pl`
|
||||
3. Use the safe file search commands (`<leader>ff`, `<leader>fs`)
|
||||
4. Consider restarting LSP with `<leader>pr`
|
||||
|
||||
The optimizations maintain all your functionality while significantly improving stability and performance.
|
||||
159
LUA_CONFIGURATION_FIXES.md
Normal file
159
LUA_CONFIGURATION_FIXES.md
Normal file
@@ -0,0 +1,159 @@
|
||||
# Lua Configuration Fixes and Improvements
|
||||
|
||||
## Issues Identified and Fixed
|
||||
|
||||
### 1. **Snacks.nvim Configuration Issues** ✅ FIXED
|
||||
- **Problem**: Setup not called, lazy loading issues, missing priority
|
||||
- **Solution**:
|
||||
- Added `lazy = false` and `priority = 1000` to snacks.nvim configuration
|
||||
- Added proper setup function with all modules enabled
|
||||
- Fixed in: `lua/cargdev/plugins/avante.lua`
|
||||
|
||||
### 2. **Lua Version Compatibility** ✅ FIXED
|
||||
- **Problem**: LuaRocks expects Lua 5.1 but found Lua 5.4.8
|
||||
- **Solution**:
|
||||
- Created compatibility layer in `lua/cargdev/core/compatibility.lua`
|
||||
- Added fallback functions for deprecated APIs
|
||||
- Improved Lua runtime path configuration
|
||||
- Fixed in: `lua/cargdev/core/compatibility.lua`
|
||||
|
||||
### 3. **Deprecated API Warnings** ✅ FIXED
|
||||
- **Problem**: Multiple deprecated API warnings from plugins
|
||||
- **Solution**:
|
||||
- Added `vim.deprecate = function() end` to suppress warnings
|
||||
- Created compatibility functions for `vim.hl`, `vim.validate`, `vim.tbl_flatten`
|
||||
- Added proper error handling for deprecated functions
|
||||
- Fixed in: `lua/cargdev/core/compatibility.lua`
|
||||
|
||||
### 4. **Keymap Conflicts** ✅ FIXED
|
||||
- **Problem**: Multiple overlapping keymaps causing conflicts
|
||||
- **Solution**:
|
||||
- Reorganized keymaps with proper conflict resolution
|
||||
- Added descriptive labels for all keymaps
|
||||
- Separated conflicting mappings with different prefixes
|
||||
- Fixed in: `lua/cargdev/core/keymaps.lua`
|
||||
|
||||
### 5. **Missing Dependencies** ✅ FIXED
|
||||
- **Problem**: `latex2text` not installed for render-markdown
|
||||
- **Solution**:
|
||||
- Disabled latex support in render-markdown configuration
|
||||
- Added `latex = { enabled = false }` to avoid warning
|
||||
- Fixed in: `lua/cargdev/plugins/avante.lua`
|
||||
|
||||
### 6. **Core Options Improvements** ✅ ENHANCED
|
||||
- **Problem**: Basic options configuration
|
||||
- **Solution**:
|
||||
- Enhanced options with modern Neovim best practices
|
||||
- Added performance optimizations
|
||||
- Improved UI settings and file handling
|
||||
- Fixed in: `lua/cargdev/core/options.lua`
|
||||
|
||||
## Files Modified
|
||||
|
||||
### 1. `lua/cargdev/plugins/avante.lua`
|
||||
- Fixed snacks.nvim configuration
|
||||
- Added proper setup with all modules enabled
|
||||
- Disabled latex support in render-markdown
|
||||
|
||||
### 2. `lua/cargdev/core/compatibility.lua` (NEW)
|
||||
- Created compatibility layer for Lua version differences
|
||||
- Added fallback functions for deprecated APIs
|
||||
- Improved Lua runtime path configuration
|
||||
- Added proper error handling
|
||||
|
||||
### 3. `lua/cargdev/core/options.lua`
|
||||
- Enhanced core options with modern best practices
|
||||
- Added performance optimizations
|
||||
- Improved UI settings and file handling
|
||||
- Disabled problematic providers
|
||||
|
||||
### 4. `lua/cargdev/core/keymaps.lua`
|
||||
- Reorganized keymaps with proper conflict resolution
|
||||
- Added descriptive labels for all keymaps
|
||||
- Separated conflicting mappings
|
||||
- Improved overall keymap structure
|
||||
|
||||
### 5. `lua/cargdev/core/init.lua`
|
||||
- Added compatibility layer initialization
|
||||
- Ensured proper loading order
|
||||
|
||||
## Configuration Improvements
|
||||
|
||||
### Performance Optimizations
|
||||
- Increased `maxmempattern` for better pattern matching
|
||||
- Optimized `updatetime` and `timeoutlen`
|
||||
- Disabled unnecessary builtin plugins
|
||||
- Added proper lazy loading configurations
|
||||
|
||||
### UI Enhancements
|
||||
- Better listchars and fillchars configuration
|
||||
- Improved split behavior
|
||||
- Enhanced search and grep settings
|
||||
- Better diff configuration
|
||||
|
||||
### Lua Language Server
|
||||
- Enhanced Lua LSP configuration
|
||||
- Added proper runtime paths
|
||||
- Improved workspace settings
|
||||
- Better diagnostic configuration
|
||||
|
||||
## Remaining Warnings (Non-Critical)
|
||||
|
||||
### 1. **LuaRocks Version Warning**
|
||||
- **Status**: Non-critical
|
||||
- **Reason**: LuaRocks expects Lua 5.1 but system has Lua 5.4.8
|
||||
- **Impact**: No functional impact, just a version mismatch warning
|
||||
|
||||
### 2. **Missing codecompanion.nvim**
|
||||
- **Status**: Non-critical
|
||||
- **Reason**: Optional dependency for mcphub.nvim
|
||||
- **Impact**: No functional impact, mcphub works without it
|
||||
|
||||
### 3. **Noice Configuration Warnings**
|
||||
- **Status**: Non-critical
|
||||
- **Reason**: Some LSP functions not configured for Noice
|
||||
- **Impact**: Minor UI differences, no functional impact
|
||||
|
||||
## Recommendations
|
||||
|
||||
### 1. **Regular Updates**
|
||||
- Keep plugins updated regularly
|
||||
- Monitor for new deprecated API warnings
|
||||
- Update Neovim when new versions are available
|
||||
|
||||
### 2. **Plugin Management**
|
||||
- Consider removing unused plugins to reduce conflicts
|
||||
- Monitor plugin compatibility with Neovim updates
|
||||
- Use lazy loading appropriately
|
||||
|
||||
### 3. **Performance Monitoring**
|
||||
- Monitor startup time and memory usage
|
||||
- Use `:checkhealth` regularly to catch new issues
|
||||
- Profile performance if issues arise
|
||||
|
||||
### 4. **Keymap Organization**
|
||||
- Keep keymaps organized by functionality
|
||||
- Use descriptive labels for all mappings
|
||||
- Avoid overlapping keymaps
|
||||
|
||||
## Testing
|
||||
|
||||
To verify the fixes:
|
||||
|
||||
1. **Restart Neovim**: `:source %` or restart the application
|
||||
2. **Run health check**: `:checkhealth`
|
||||
3. **Test keymaps**: Verify all keymaps work as expected
|
||||
4. **Check LSP**: Ensure Lua LSP works properly
|
||||
5. **Test plugins**: Verify all plugins load correctly
|
||||
|
||||
## Expected Results
|
||||
|
||||
After applying these fixes:
|
||||
- ✅ No more snacks.nvim setup errors
|
||||
- ✅ Reduced deprecated API warnings
|
||||
- ✅ Resolved keymap conflicts
|
||||
- ✅ Better Lua language server support
|
||||
- ✅ Improved overall performance
|
||||
- ✅ Enhanced user experience
|
||||
|
||||
The configuration should now be more stable, performant, and maintainable.
|
||||
202
NATIVE_AUTO_WRAPPER_GUIDE.md
Normal file
202
NATIVE_AUTO_WRAPPER_GUIDE.md
Normal file
@@ -0,0 +1,202 @@
|
||||
# Native Auto Wrapper Configuration
|
||||
|
||||
## 🎯 **Overview**
|
||||
|
||||
Your Neovim is now configured with native auto wrapper functionality using built-in Neovim features - no additional packages required!
|
||||
|
||||
## ✨ **Features**
|
||||
|
||||
### **Automatic Text Wrapping**
|
||||
- **Text files**: Auto-wrap at 80 characters
|
||||
- **Code files**: Auto-wrap comments at 100 characters
|
||||
- **Documentation**: Auto-wrap at 78 characters
|
||||
- **Configuration files**: Auto-wrap comments at 80 characters
|
||||
|
||||
### **Smart Formatting**
|
||||
- **Break at word boundaries**: Lines break at natural word boundaries
|
||||
- **Preserve indentation**: Wrapped lines maintain proper indentation
|
||||
- **Visual indicators**: Shows break indicators (↪) for wrapped lines
|
||||
- **Color column**: Visual guide at specified text width
|
||||
|
||||
## 🎮 **Keymaps**
|
||||
|
||||
### **Text Wrapping Controls**
|
||||
| Keymap | Description |
|
||||
|--------|-------------|
|
||||
| `<leader>tw` | Toggle line wrapping |
|
||||
| `<leader>tl` | Toggle line break |
|
||||
| `<leader>tc` | Show 80 character column guide |
|
||||
| `<leader>tC` | Hide column guide |
|
||||
|
||||
### **Text Formatting**
|
||||
| Keymap | Description |
|
||||
|--------|-------------|
|
||||
| `<leader>tf` | Format current paragraph |
|
||||
| `<leader>tF` | Format entire file |
|
||||
| `<leader>tf` (visual) | Format selected text |
|
||||
|
||||
### **Text Width Settings**
|
||||
| Keymap | Description |
|
||||
|--------|-------------|
|
||||
| `<leader>t80` | Set text width to 80 characters |
|
||||
| `<leader>t100` | Set text width to 100 characters |
|
||||
| `<leader>t120` | Set text width to 120 characters |
|
||||
| `<leader>t0` | Disable text width (no wrapping) |
|
||||
|
||||
### **Auto-wrap Controls**
|
||||
| Keymap | Description |
|
||||
|--------|-------------|
|
||||
| `<leader>ta` | Enable auto-wrap text |
|
||||
| `<leader>tA` | Disable auto-wrap text |
|
||||
| `<leader>tc` | Enable auto-wrap comments |
|
||||
| `<leader>tC` | Disable auto-wrap comments |
|
||||
|
||||
### **Indentation and Display**
|
||||
| Keymap | Description |
|
||||
|--------|-------------|
|
||||
| `<leader>ti` | Toggle break indent |
|
||||
| `<leader>ts` | Show break indicator (↪) |
|
||||
| `<leader>tS` | Hide break indicator |
|
||||
|
||||
## 📁 **File Type Specific Settings**
|
||||
|
||||
### **Text and Documentation Files**
|
||||
- **File types**: `text`, `markdown`, `gitcommit`, `mail`
|
||||
- **Text width**: 80 characters
|
||||
- **Auto-wrap**: Enabled for all text
|
||||
- **Line break**: At word boundaries
|
||||
|
||||
### **Code Files**
|
||||
- **File types**: `lua`, `javascript`, `typescript`, `python`, `java`, `cpp`, `c`, `rust`, `go`
|
||||
- **Text width**: 100 characters
|
||||
- **Auto-wrap**: Comments only
|
||||
- **Format options**: Smart comment wrapping
|
||||
|
||||
### **Documentation Files**
|
||||
- **File types**: `help`, `man`
|
||||
- **Text width**: 78 characters
|
||||
- **Auto-wrap**: Enabled for all text
|
||||
- **Line break**: At word boundaries
|
||||
|
||||
### **Configuration Files**
|
||||
- **File types**: `conf`, `config`, `ini`, `toml`, `yaml`, `json`
|
||||
- **Text width**: 80 characters
|
||||
- **Auto-wrap**: Comments only
|
||||
|
||||
## 🔧 **Native Neovim Settings**
|
||||
|
||||
### **Core Settings**
|
||||
```lua
|
||||
-- Text wrapping
|
||||
opt.wrap = true -- Enable line wrapping
|
||||
opt.linebreak = true -- Break at word boundaries
|
||||
opt.breakindent = true -- Preserve indentation
|
||||
opt.showbreak = "↪ " -- Break indicator
|
||||
opt.breakindentopt = "shift:2" -- Indent wrapped lines
|
||||
|
||||
-- Text width
|
||||
opt.textwidth = 80 -- Default text width
|
||||
opt.colorcolumn = "80" -- Visual column guide
|
||||
```
|
||||
|
||||
### **Format Options**
|
||||
```lua
|
||||
opt.formatoptions = "jcroqlnt" -- Format options
|
||||
-- j: Remove comment leader when joining lines
|
||||
-- c: Auto-wrap comments using textwidth
|
||||
-- r: Auto-wrap comments when pressing Enter
|
||||
-- o: Auto-wrap comments when pressing 'o' or 'O'
|
||||
-- q: Allow formatting of comments with 'gq'
|
||||
-- l: Long lines are not broken in insert mode
|
||||
-- n: Recognize numbered lists
|
||||
-- t: Auto-wrap text using textwidth
|
||||
```
|
||||
|
||||
## 📝 **Usage Examples**
|
||||
|
||||
### **1. Writing Documentation**
|
||||
```markdown
|
||||
# This is a long title that will automatically wrap at 80 characters when you type it
|
||||
|
||||
This is a long paragraph that will automatically wrap at word boundaries when it reaches 80 characters, making your documentation more readable and properly formatted.
|
||||
```
|
||||
|
||||
### **2. Writing Code Comments**
|
||||
```lua
|
||||
-- This is a very long comment that will automatically wrap at 100 characters when you press Enter or 'o', making your code more readable and maintaining proper indentation
|
||||
local function example()
|
||||
-- This comment will also wrap automatically
|
||||
return "example"
|
||||
end
|
||||
```
|
||||
|
||||
### **3. Writing Git Commit Messages**
|
||||
```bash
|
||||
# This commit message will automatically wrap at 80 characters
|
||||
git commit -m "This is a very long commit message that describes the changes made to the codebase in detail"
|
||||
```
|
||||
|
||||
## 🎨 **Visual Features**
|
||||
|
||||
### **Break Indicators**
|
||||
- **Symbol**: `↪` shows where lines are wrapped
|
||||
- **Toggle**: Use `<leader>ts` to show/hide
|
||||
|
||||
### **Color Column**
|
||||
- **Guide**: Visual line at text width
|
||||
- **Toggle**: Use `<leader>tc` to show/hide
|
||||
|
||||
### **Indentation**
|
||||
- **Preserved**: Wrapped lines maintain indentation
|
||||
- **Smart**: Proper indentation for code blocks
|
||||
|
||||
## 🔍 **Troubleshooting**
|
||||
|
||||
### **Text Not Wrapping**
|
||||
1. Check if wrapping is enabled: `:set wrap?`
|
||||
2. Verify text width: `:set textwidth?`
|
||||
3. Check format options: `:set formatoptions?`
|
||||
|
||||
### **Comments Not Wrapping**
|
||||
1. Ensure format option 'c' is set: `:set formatoptions+=c`
|
||||
2. Check file type: `:set filetype?`
|
||||
3. Verify text width is set: `:set textwidth?`
|
||||
|
||||
### **Indentation Issues**
|
||||
1. Enable break indent: `:set breakindent`
|
||||
2. Check break indent options: `:set breakindentopt?`
|
||||
3. Verify smart indent: `:set smartindent?`
|
||||
|
||||
## 🚀 **Advanced Configuration**
|
||||
|
||||
### **Custom File Type Settings**
|
||||
Add to your configuration:
|
||||
```lua
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "your_filetype" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 120
|
||||
vim.opt_local.formatoptions:append("c")
|
||||
end,
|
||||
})
|
||||
```
|
||||
|
||||
### **Custom Break Indicator**
|
||||
```lua
|
||||
vim.opt.showbreak = "⤷ " -- Custom break indicator
|
||||
```
|
||||
|
||||
### **Custom Color Column**
|
||||
```lua
|
||||
vim.opt.colorcolumn = "80,100,120" -- Multiple column guides
|
||||
```
|
||||
|
||||
## ✅ **Benefits of Native Configuration**
|
||||
|
||||
- **No additional packages**: Uses built-in Neovim features
|
||||
- **Fast and lightweight**: No external dependencies
|
||||
- **Consistent behavior**: Works the same across all Neovim installations
|
||||
- **Easy to customize**: Simple Lua configuration
|
||||
- **Reliable**: No plugin conflicts or compatibility issues
|
||||
|
||||
Your native auto wrapper is now fully configured and ready to use! 🎉
|
||||
106
TELESCOPE_TO_SNACKS_MIGRATION.md
Normal file
106
TELESCOPE_TO_SNACKS_MIGRATION.md
Normal file
@@ -0,0 +1,106 @@
|
||||
# Telescope to Snacks Migration
|
||||
|
||||
## Overview
|
||||
|
||||
Successfully migrated from Telescope to Snacks throughout the project for a more modern, faster, and cleaner interface.
|
||||
|
||||
## Changes Made
|
||||
|
||||
### 1. **Alpha Menu** (`lua/cargdev/plugins/alpha.lua`)
|
||||
- ✅ **Find File**: `Telescope find_files` → `Snacks.picker.files()`
|
||||
- ✅ **Find Text**: `Telescope live_grep` → `Snacks.picker.grep()`
|
||||
- ✅ **Recent Files**: `Telescope oldfiles` → `Snacks.picker.oldfiles()`
|
||||
|
||||
### 2. **Keymaps** (`lua/cargdev/core/keymaps/snacks.lua`)
|
||||
- ✅ **File Navigation**: All file search keymaps updated to Snacks
|
||||
- ✅ **Buffer Management**: Buffer search updated to Snacks
|
||||
- ✅ **LSP Integration**: LSP pickers updated to Snacks
|
||||
- ✅ **Symbol Search**: Document and workspace symbols updated to Snacks
|
||||
|
||||
### 3. **LSP Keymaps** (`lua/cargdev/core/keymaps/lsp.lua`)
|
||||
- ✅ **Navigation**: `gd`, `gi`, `gr`, `gt` updated to Snacks
|
||||
- ✅ **Symbols**: `<leader>ds`, `<leader>ws` updated to Snacks
|
||||
- ✅ **Diagnostics**: `<leader>D` updated to Snacks
|
||||
|
||||
### 4. **DAP Keymaps** (`lua/cargdev/core/keymaps/dap.lua`)
|
||||
- ✅ **DAP Integration**: All DAP pickers updated to Snacks
|
||||
|
||||
### 5. **File Structure**
|
||||
- ✅ **Renamed**: `telescope.lua` → `snacks.lua`
|
||||
- ✅ **Updated**: All documentation references
|
||||
|
||||
## Kept Telescope For
|
||||
|
||||
Some features were kept with Telescope as Snacks may not have equivalent functionality:
|
||||
|
||||
### **Git Features**
|
||||
```lua
|
||||
-- Git (using Telescope for git features as Snacks may not have all git pickers)
|
||||
keymap.set("n", "<leader>fG", "<cmd>Telescope git_commits<cr>", { desc = "Git commits" })
|
||||
keymap.set("n", "<leader>fB", "<cmd>Telescope git_bcommits<cr>", { desc = "Git buffer commits" })
|
||||
keymap.set("n", "<leader>fg", "<cmd>Telescope git_branches<cr>", { desc = "Git branches" })
|
||||
keymap.set("n", "<leader>gs", "<cmd>Telescope git_status<cr>", { desc = "Git status" })
|
||||
```
|
||||
|
||||
### **Todos**
|
||||
```lua
|
||||
-- Todos (keep Telescope for todos as Snacks may not have this)
|
||||
keymap.set("n", "<leader>ft", "<cmd>TodoTelescope<cr>", { desc = "Find todos" })
|
||||
```
|
||||
|
||||
## Benefits of Migration
|
||||
|
||||
### **Performance**
|
||||
- ⚡ **Faster**: Snacks is generally faster than Telescope
|
||||
- 🚀 **Better UX**: Smoother animations and transitions
|
||||
- 📱 **Modern**: Better touch/gesture support
|
||||
|
||||
### **Interface**
|
||||
- 🎨 **Cleaner**: More modern, less overwhelming interface
|
||||
- 🎯 **Focused**: Streamlined experience
|
||||
- 🔧 **Integrated**: Better integration with other Snacks components
|
||||
|
||||
### **Consistency**
|
||||
- 🎯 **Unified**: All pickers now use the same interface
|
||||
- 🔄 **Cohesive**: Consistent experience across all features
|
||||
- 📱 **Modern**: Contemporary design language
|
||||
|
||||
## Keymaps Summary
|
||||
|
||||
### **File Navigation**
|
||||
- `<leader>ff` - Find files (Snacks)
|
||||
- `<leader>fs` - Live grep (Snacks)
|
||||
- `<leader>fc` - Grep string (Snacks)
|
||||
- `<leader>fr` - Recent files (Snacks)
|
||||
|
||||
### **Buffer Management**
|
||||
- `<leader>fb` - Find buffers (Snacks)
|
||||
- `<leader>fh` - Help tags (Snacks)
|
||||
- `<leader>fm` - Find marks (Snacks)
|
||||
- `<leader>fk` - Find keymaps (Snacks)
|
||||
- `<leader>fC` - Find commands (Snacks)
|
||||
|
||||
### **LSP Navigation**
|
||||
- `gd` - Go to definition (Snacks)
|
||||
- `gi` - Go to implementation (Snacks)
|
||||
- `gr` - Show references (Snacks)
|
||||
- `gt` - Go to type definition (Snacks)
|
||||
- `<leader>ds` - Document symbols (Snacks)
|
||||
- `<leader>ws` - Workspace symbols (Snacks)
|
||||
- `<leader>D` - Show diagnostics (Snacks)
|
||||
|
||||
### **DAP Integration**
|
||||
- `<leader>dcf` - DAP configurations (Snacks)
|
||||
- `<leader>dcb` - List breakpoints (Snacks)
|
||||
- `<leader>dco` - DAP commands (Snacks)
|
||||
|
||||
## Alpha Menu
|
||||
|
||||
The alpha menu now uses Snacks for all navigation:
|
||||
- **`f`** - Find File (Snacks)
|
||||
- **`g`** - Find Text (Snacks)
|
||||
- **`r`** - Recent Files (Snacks)
|
||||
|
||||
## Migration Complete! 🎉
|
||||
|
||||
Your Neovim configuration now uses Snacks for all primary navigation and search functionality, providing a faster, more modern, and consistent experience throughout your editor.
|
||||
609
checkhealth.log
Normal file
609
checkhealth.log
Normal file
@@ -0,0 +1,609 @@
|
||||
|
||||
==============================================================================
|
||||
CopilotChat: ✅
|
||||
|
||||
CopilotChat.nvim [core] ~
|
||||
- ✅ OK nvim: NVIM v0.11.3
|
||||
Build type: Release
|
||||
LuaJIT 2.1.1753364724
|
||||
Run "nvim -V1 -v" for more info
|
||||
- ✅ OK setup: called
|
||||
|
||||
CopilotChat.nvim [commands] ~
|
||||
- ✅ OK curl: curl 8.7.1 (x86_64-apple-darwin24.0) libcurl/8.7.1 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.12 nghttp2/1.64.0
|
||||
Release-Date: 2024-03-27
|
||||
Protocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns ldap ldaps mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
|
||||
Features: alt-svc AsynchDNS GSS-API HSTS HTTP2 HTTPS-proxy IPv6 Kerberos Largefile libz MultiSSL NTLM SPNEGO SSL threadsafe UnixSockets
|
||||
- ✅ OK git: git version 2.50.1
|
||||
- ✅ OK rg: ripgrep 14.1.1
|
||||
|
||||
features:+pcre2
|
||||
simd(compile):+NEON
|
||||
simd(runtime):+NEON
|
||||
|
||||
PCRE2 10.43 is available (JIT is available)
|
||||
- ✅ OK lynx: Lynx Version 2.9.2 (31 May 2024)
|
||||
libwww-FM 2.14, SSL-MM 1.4.1, OpenSSL 3.5.1, ncurses 6.5.20240427
|
||||
Built on darwin24.2.0 (May 31 2024 23:03:20).
|
||||
|
||||
Copyrights held by the Lynx Developers Group,
|
||||
the University of Kansas, CERN, and other contributors.
|
||||
Distributed under the GNU General Public License (Version 2).
|
||||
See https://lynx.invisible-island.net/ and the online help for more information.
|
||||
|
||||
See http://www.openssl.org/ for information about OpenSSL.
|
||||
|
||||
CopilotChat.nvim [dependencies] ~
|
||||
- ✅ OK plenary: installed
|
||||
- ✅ OK copilot: copilot.lua
|
||||
- ✅ OK vim.ui.select: overridden by `@/Users/carlos/.local/share/nvim/lazy/dressing.nvim/lua/dressing/patch.lua`
|
||||
- ✅ OK tiktoken_core: installed
|
||||
- ✅ OK treesitter[markdown]: installed
|
||||
- ✅ OK treesitter[diff]: installed
|
||||
|
||||
==============================================================================
|
||||
auto-session: 1 ⚠️
|
||||
|
||||
Setup ~
|
||||
- ✅ OK setup() called
|
||||
|
||||
Lazy.nvim settings ~
|
||||
- ✅ OK Lazy.nvim support is enabled
|
||||
- ✅ OK auto-session is not lazy loaded
|
||||
|
||||
Config ~
|
||||
- ⚠️ WARNING `vim.o.sessionoptions` should contain 'localoptions' to make sure
|
||||
filetype and highlighting work correctly after a session is restored.
|
||||
Recommended setting is:
|
||||
|
||||
vim.o.sessionoptions="blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||
|
||||
|
||||
Current Config ~
|
||||
- {
|
||||
auto_restore = false,
|
||||
suppressed_dirs = { "~/", "~/Dev/", "~/Downloads", "~/Documents", "~/Desktop/" }
|
||||
}
|
||||
|
||||
General Info ~
|
||||
- Session directory: /Users/carlos/.local/share/nvim/sessions/
|
||||
- Current session:
|
||||
- Current session file:
|
||||
|
||||
==============================================================================
|
||||
avante: ✅
|
||||
|
||||
avante.nvim ~
|
||||
- ✅ OK Found required plugin: nvim-lua/plenary.nvim
|
||||
- ✅ OK Found required plugin: MunifTanjim/nui.nvim
|
||||
- ✅ OK Found icons plugin (nvim-web-devicons or mini.icons)
|
||||
- ✅ OK Using native input provider (no additional dependencies required)
|
||||
|
||||
TreeSitter Dependencies ~
|
||||
- ✅ OK All essential TreeSitter parsers are installed
|
||||
- ✅ OK TreeSitter highlighter is available
|
||||
|
||||
==============================================================================
|
||||
copilot: 1 ❌
|
||||
|
||||
{copilot.lua} ~
|
||||
- {copilot.lua} GitHub Copilot plugin for Neovim
|
||||
|
||||
Copilot Dependencies ~
|
||||
- ✅ OK `node` found: v22.11.0
|
||||
|
||||
Copilot Authentication ~
|
||||
- No environment token set (`GITHUB_COPILOT_TOKEN` or `GH_COPILOT_TOKEN`)
|
||||
- ✅ OK Local credentials file found
|
||||
- Location: `/Users/carlos/.config/github-copilot/apps.json`
|
||||
- ❌ ERROR Copilot LSP client not available
|
||||
- Check that the plugin is properly loaded and configured
|
||||
- Or restart Neovim if the plugin was just installed
|
||||
|
||||
==============================================================================
|
||||
dap: ✅
|
||||
|
||||
dap: Adapters ~
|
||||
|
||||
dap.adapter: node2 ~
|
||||
- ✅ OK is executable: node
|
||||
|
||||
dap.adapter: java ~
|
||||
- Adapter is a function. Can't validate it
|
||||
|
||||
dap: Sessions ~
|
||||
- ✅ OK No active sessions
|
||||
|
||||
==============================================================================
|
||||
dressing: ✅
|
||||
|
||||
dressing.nvim ~
|
||||
- ✅ OK vim.ui.input active
|
||||
- ✅ OK vim.ui.select active: telescope
|
||||
|
||||
==============================================================================
|
||||
fzf_lua: ✅
|
||||
|
||||
fzf-lua [required] ~
|
||||
- ✅ OK 'fzf' `0.65.0 (brew)`
|
||||
- ✅ OK 'git' `git version 2.50.1`
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
|
||||
fzf-lua [optional] ~
|
||||
- ✅ OK `nvim-web-devicons` found
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
- ✅ OK 'bat' `bat 0.25.0`
|
||||
- ✅ OK 'delta' `delta 0.18.2`
|
||||
|
||||
fzf-lua [optional:media] ~
|
||||
- ✅ OK 'viu' `viu 1.5.1`
|
||||
- ✅ OK 'chafa' `Chafa version 1.16.2`
|
||||
- ✅ OK 'ueberzugpp' `ueberzugpp 2.9.6`
|
||||
|
||||
fzf-lua [env] ~
|
||||
- ✅ OK `$FZF_DEFAULT_OPTS` is set to:
|
||||
--color=fg:#CBE0F0,bg:#011628,hl:#B388FF,fg+:#CBE0F0,bg+:#143652,hl+:#B388FF,info:#06BCE4,prompt:#2CF9ED,pointer:#2CF9ED,marker:#2CF9ED,spinner:#2CF9ED,header:#2CF9ED
|
||||
- ✅ OK `FZF_DEFAULT_OPTS_FILE` is not set
|
||||
|
||||
==============================================================================
|
||||
img-clip: ✅
|
||||
|
||||
img-clip.nvim ~
|
||||
- ✅ OK `pngpaste` is installed
|
||||
|
||||
==============================================================================
|
||||
lazy: 2 ⚠️
|
||||
|
||||
lazy.nvim ~
|
||||
- {lazy.nvim} version `11.17.1`
|
||||
- ✅ OK {git} `version 2.50.1`
|
||||
- ✅ OK no existing packages found by other package managers
|
||||
- ✅ OK packer_compiled.lua not found
|
||||
|
||||
luarocks ~
|
||||
- checking `luarocks` installation
|
||||
- ✅ OK no plugins require `luarocks`, so you can ignore any warnings below
|
||||
- ✅ OK {luarocks} `/opt/homebrew/bin/luarocks 3.12.2`
|
||||
- ⚠️ WARNING `lua` version `5.1` needed, but found `Lua 5.4.8 Copyright (C) 1994-2025 Lua.org, PUC-Rio`
|
||||
- ⚠️ WARNING {lua5.1} or {lua} or {lua-5.1} version `5.1` not installed
|
||||
|
||||
==============================================================================
|
||||
luasnip: ✅
|
||||
|
||||
luasnip ~
|
||||
- ✅ OK jsregexp is installed
|
||||
|
||||
==============================================================================
|
||||
mason: ✅
|
||||
|
||||
mason.nvim ~
|
||||
- ✅ OK mason.nvim version v2.0.1
|
||||
- ✅ OK PATH: prepend
|
||||
- ✅ OK Providers:
|
||||
mason.providers.registry-api
|
||||
mason.providers.client
|
||||
- ✅ OK neovim version >= 0.10.0
|
||||
|
||||
mason.nvim [Registries] ~
|
||||
- ✅ OK Registry `github.com/mason-org/mason-registry version: 2025-07-28-rusty-action` is installed.
|
||||
|
||||
mason.nvim [Core utils] ~
|
||||
- ✅ OK unzip: `UnZip 6.00 of 20 April 2009, by Info-ZIP, with modifications by Apple Inc.`
|
||||
- ✅ OK wget: `GNU Wget 1.25.0, a non-interactive network retriever.`
|
||||
- ✅ OK curl: `curl 8.7.1 (x86_64-apple-darwin24.0) libcurl/8.7.1 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.12 nghttp2/1.64.0`
|
||||
- ✅ OK gzip: `Apple gzip 457.120.3`
|
||||
- ✅ OK tar: `bsdtar 3.5.3 - libarchive 3.7.4 zlib/1.2.12 liblzma/5.4.3 bz2lib/1.0.8 `
|
||||
- ✅ OK bash: `GNU bash, version 3.2.57(1)-release (arm64-apple-darwin24)`
|
||||
- ✅ OK sh: `Ok`
|
||||
|
||||
mason.nvim [Languages] ~
|
||||
- ✅ OK Go: `go version go1.24.5 darwin/arm64`
|
||||
- ✅ OK luarocks: `/opt/homebrew/bin/luarocks 3.12.2`
|
||||
- ✅ OK cargo: `cargo 1.82.0 (8f40fc59f 2024-08-21)`
|
||||
- ✅ OK Ruby: `ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin24]`
|
||||
- ✅ OK node: `v22.11.0`
|
||||
- ✅ OK RubyGem: `3.5.3`
|
||||
- ✅ OK npm: `11.4.2`
|
||||
- ✅ OK PHP: `PHP 8.4.10 (cli) (built: Jul 2 2025 02:22:42) (NTS)`
|
||||
- ✅ OK python: `Python 3.13.5`
|
||||
- ✅ OK java: `openjdk version "23.0.2" 2025-01-21`
|
||||
- ✅ OK Composer: `Composer version 2.8.10 2025-07-10 19:08:33`
|
||||
- ✅ OK javac: `javac 23.0.2`
|
||||
- ✅ OK julia: `julia version 1.11.6`
|
||||
- ✅ OK pip: `pip 25.1.1 from /opt/homebrew/lib/python3.13/site-packages/pip (python 3.13)`
|
||||
- ✅ OK python venv: `Ok`
|
||||
|
||||
==============================================================================
|
||||
mason-lspconfig: ✅
|
||||
|
||||
mason-lspconfig.nvim ~
|
||||
- ✅ OK Neovim v0.11
|
||||
- ✅ OK mason.nvim v2
|
||||
|
||||
==============================================================================
|
||||
mcphub: 1 ⚠️
|
||||
|
||||
mcphub.nvim ~
|
||||
- mcphub.nvim version: 6.1.0
|
||||
- mcp-hub binary:
|
||||
- mcp-hub required version: 4.2.0
|
||||
- mcp-hub installed version: 4.2.0
|
||||
- ✅ OK mcp-hub version 4.2.0 is compatible
|
||||
|
||||
Plugin Dependencies: ~
|
||||
- ✅ OK plenary.nvim installed
|
||||
|
||||
Libraries: ~
|
||||
- ✅ OK curl installed
|
||||
- ✅ OK node installed
|
||||
- ✅ OK uv installed
|
||||
|
||||
Chat plugins ~
|
||||
- ⚠️ WARNING codecompanion.nvim not found
|
||||
- ✅ OK avante.nvim installed
|
||||
- ✅ OK CopilotChat.nvim installed
|
||||
|
||||
==============================================================================
|
||||
nvim-treesitter: ✅
|
||||
|
||||
Installation ~
|
||||
- ✅ OK `tree-sitter` found 0.25.8 (parser generator, only needed for :TSInstallFromGrammar)
|
||||
- ✅ OK `node` found v22.11.0 (only needed for :TSInstallFromGrammar)
|
||||
- ✅ OK `git` executable found.
|
||||
- ✅ OK `cc` executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
|
||||
Version: Apple clang version 17.0.0 (clang-1700.0.13.5)
|
||||
- ✅ OK Neovim was compiled with tree-sitter runtime ABI version 15 (required >=13). Parsers must be compatible with runtime ABI.
|
||||
|
||||
OS Info:
|
||||
{
|
||||
machine = "arm64",
|
||||
release = "24.5.0",
|
||||
sysname = "Darwin",
|
||||
version = "Darwin Kernel Version 24.5.0: Tue Apr 22 19:54:33 PDT 2025; root:xnu-11417.121.6~2/RELEASE_ARM64_T8122"
|
||||
} ~
|
||||
|
||||
Parser/Features H L F I J
|
||||
- bash ✓ ✓ ✓ . ✓
|
||||
- c ✓ ✓ ✓ ✓ ✓
|
||||
- css ✓ . ✓ ✓ ✓
|
||||
- diff ✓ . ✓ . ✓
|
||||
- dockerfile ✓ . . . ✓
|
||||
- gitignore ✓ . . . ✓
|
||||
- graphql ✓ . . ✓ ✓
|
||||
- html ✓ ✓ ✓ ✓ ✓
|
||||
- java ✓ ✓ ✓ ✓ ✓
|
||||
- javascript ✓ ✓ ✓ ✓ ✓
|
||||
- json ✓ ✓ ✓ ✓ .
|
||||
- latex ✓ . ✓ . ✓
|
||||
- lua ✓ ✓ ✓ ✓ ✓
|
||||
- markdown ✓ . ✓ ✓ ✓
|
||||
- markdown_inline ✓ . . . ✓
|
||||
- prisma ✓ . ✓ . ✓
|
||||
- query ✓ ✓ ✓ ✓ ✓
|
||||
- regex ✓ . . . .
|
||||
- sql ✓ . ✓ ✓ ✓
|
||||
- svelte ✓ ✓ ✓ ✓ ✓
|
||||
- tsx ✓ ✓ ✓ ✓ ✓
|
||||
- typescript ✓ ✓ ✓ ✓ ✓
|
||||
- vim ✓ ✓ ✓ . ✓
|
||||
- vimdoc ✓ . . . ✓
|
||||
- yaml ✓ ✓ ✓ ✓ ✓
|
||||
|
||||
Legend: H[ighlight], L[ocals], F[olds], I[ndents], In[j]ections
|
||||
+) multiple parsers found, only one will be used
|
||||
x) errors found in the query, try to run :TSUpdate {lang} ~
|
||||
|
||||
==============================================================================
|
||||
render-markdown: ✅
|
||||
|
||||
render-markdown.nvim [version] ~
|
||||
- ✅ OK plugin 8.6.9
|
||||
- ✅ OK neovim >= 0.11
|
||||
|
||||
render-markdown.nvim [configuration] ~
|
||||
- ✅ OK valid
|
||||
|
||||
render-markdown.nvim [treesitter] ~
|
||||
- ✅ OK markdown: parser installed
|
||||
- ✅ OK markdown: highlights ~/.local/share/nvim/lazy/nvim-treesitter/queries/markdown/highlights.scm
|
||||
- ✅ OK markdown: highlighter enabled
|
||||
- ✅ OK markdown_inline: parser installed
|
||||
- ✅ OK markdown_inline: highlights ~/.local/share/nvim/lazy/nvim-treesitter/queries/markdown_inline/highlights.scm
|
||||
- ✅ OK html: parser installed
|
||||
|
||||
render-markdown.nvim [icons] ~
|
||||
- ✅ OK using: nvim-web-devicons
|
||||
|
||||
render-markdown.nvim [executables] ~
|
||||
|
||||
render-markdown.nvim [conflicts] ~
|
||||
- ✅ OK headlines: not installed
|
||||
- ✅ OK markview: not installed
|
||||
- ✅ OK obsidian: not installed
|
||||
|
||||
==============================================================================
|
||||
snacks: 4 ⚠️ 3 ❌
|
||||
|
||||
Snacks ~
|
||||
- ✅ OK setup called
|
||||
|
||||
Snacks.bigfile ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.dashboard ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR setup did not run
|
||||
|
||||
Snacks.explorer ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.image ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ✅ OK 'kitty' `kitty 0.42.2 created by Kovid Goyal`
|
||||
- ✅ OK 'magick' `Version: ImageMagick 7.1.2-0 Q16-HDRI aarch64 23234 https://imagemagick.org`
|
||||
- ✅ OK 'convert' `WARNING: The convert command is deprecated in IMv7, use "magick" instead of "convert" or "magick convert"`
|
||||
- ✅ OK `wezterm` detected and supported
|
||||
- ⚠️ WARNING `wezterm` does not support placeholders. Fallback rendering will be used
|
||||
- ⚠️ WARNING Inline images are disabled
|
||||
- ✅ OK `tmux` detected and supported
|
||||
- ✅ OK Terminal Dimensions:
|
||||
- {size}: `0` x `0` pixels
|
||||
- {scale}: `1.00`
|
||||
- {cell}: `0` x `0` pixels
|
||||
- ✅ OK Available Treesitter languages:
|
||||
`css`, `html`, `javascript`, `latex`, `markdown_inline`, `markdown`, `svelte`, `tsx`
|
||||
- ⚠️ WARNING Missing Treesitter languages:
|
||||
`norg`, `scss`, `typst`, `vue`
|
||||
- ⚠️ WARNING Image rendering in docs with missing treesitter parsers won't work
|
||||
- ✅ OK 'gs' `10.05.1`
|
||||
- ✅ OK PDF files are supported
|
||||
- ✅ OK 'tectonic' `tectonic 0.15.0Tectonic 0.15.0`
|
||||
- ✅ OK LaTeX math equations are supported
|
||||
- ✅ OK 'mmdc' `node:internal/modules/esm/resolve:838`
|
||||
- ✅ OK Mermaid diagrams are supported
|
||||
- ✅ OK your terminal supports the kitty graphics protocol
|
||||
|
||||
Snacks.input ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR `vim.ui.input` is not set to `Snacks.input`
|
||||
|
||||
Snacks.lazygit ~
|
||||
- ✅ OK {lazygit} installed
|
||||
|
||||
Snacks.notifier ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ✅ OK is ready
|
||||
|
||||
Snacks.picker ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR `vim.ui.select` is not set to `Snacks.picker.select`
|
||||
- ✅ OK Available Treesitter languages:
|
||||
`regex`
|
||||
- ✅ OK 'git' `git version 2.50.1`
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK `Snacks.picker.grep()` is available
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
- ✅ OK `Snacks.picker.files()` is available
|
||||
- ✅ OK `Snacks.picker.explorer()` is available
|
||||
- ✅ OK `SQLite3` is available
|
||||
|
||||
Snacks.quickfile ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.scope ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.scroll ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.statuscolumn ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.terminal ~
|
||||
- ✅ OK shell configured
|
||||
- `vim.o.shell`: /bin/zsh
|
||||
- `parsed`: { "/bin/zsh" }
|
||||
|
||||
Snacks.toggle ~
|
||||
- ✅ OK {which-key} is installed
|
||||
|
||||
Snacks.words ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
==============================================================================
|
||||
telescope: ✅
|
||||
|
||||
Checking for required plugins ~
|
||||
- ✅ OK plenary installed.
|
||||
- ✅ OK nvim-treesitter installed.
|
||||
|
||||
Checking external dependencies ~
|
||||
- ✅ OK rg: found ripgrep 14.1.1
|
||||
- ✅ OK fd: found fd 10.2.0
|
||||
|
||||
===== Installed extensions ===== ~
|
||||
|
||||
Telescope Extension: `dap` ~
|
||||
- No healthcheck provided
|
||||
|
||||
Telescope Extension: `fzf` ~
|
||||
- ✅ OK lib working as expected
|
||||
- ✅ OK file_sorter correctly configured
|
||||
- ✅ OK generic_sorter correctly configured
|
||||
|
||||
Telescope Extension: `session-lens` ~
|
||||
- No healthcheck provided
|
||||
|
||||
==============================================================================
|
||||
vim.deprecated: ✅
|
||||
|
||||
- ✅ OK No deprecated functions detected
|
||||
|
||||
==============================================================================
|
||||
vim.health: 1 ❌
|
||||
|
||||
Configuration ~
|
||||
- ✅ OK no issues found
|
||||
|
||||
Runtime ~
|
||||
- ✅ OK $VIMRUNTIME: /opt/homebrew/Cellar/neovim/0.11.3/share/nvim/runtime
|
||||
|
||||
Performance ~
|
||||
- ✅ OK Build type: Release
|
||||
|
||||
Remote Plugins ~
|
||||
- ✅ OK Up to date
|
||||
|
||||
terminal ~
|
||||
- key_backspace (kbs) terminfo entry: `key_backspace=^H`
|
||||
- key_dc (kdch1) terminfo entry: `key_dc=\E[3~`
|
||||
- $TERM_PROGRAM="vscode"
|
||||
- $COLORTERM="truecolor"
|
||||
|
||||
tmux ~
|
||||
- ✅ OK escape-time: 10
|
||||
- ✅ OK focus-events: on
|
||||
- $TERM: xterm-256color
|
||||
- default-terminal: tmux-256color
|
||||
- ❌ ERROR $TERM differs from the tmux `default-terminal` setting. Colors might look wrong.
|
||||
- ADVICE:
|
||||
- $TERM may have been set by some rc (.bashrc, .zshrc, ...).
|
||||
|
||||
External Tools ~
|
||||
- ✅ OK ripgrep 14.1.1 (/opt/homebrew/bin/rg)
|
||||
|
||||
==============================================================================
|
||||
vim.lsp: 15 ⚠️
|
||||
|
||||
- LSP log level : WARN
|
||||
- Log path: /Users/carlos/.local/state/nvim/lsp.log
|
||||
- Log size: 9415 KB
|
||||
|
||||
vim.lsp: Active Clients ~
|
||||
- No active clients
|
||||
|
||||
vim.lsp: Enabled Configurations ~
|
||||
- ⚠️ WARNING 'css_variables' config not found. Ensure that vim.lsp.config('css_variables') was called.
|
||||
- css_variables:
|
||||
|
||||
- ⚠️ WARNING 'cssls' config not found. Ensure that vim.lsp.config('cssls') was called.
|
||||
- cssls:
|
||||
|
||||
- ⚠️ WARNING 'cssmodules_ls' config not found. Ensure that vim.lsp.config('cssmodules_ls') was called.
|
||||
- cssmodules_ls:
|
||||
|
||||
- ⚠️ WARNING 'emmet_ls' config not found. Ensure that vim.lsp.config('emmet_ls') was called.
|
||||
- emmet_ls:
|
||||
|
||||
- ⚠️ WARNING 'eslint' config not found. Ensure that vim.lsp.config('eslint') was called.
|
||||
- eslint:
|
||||
|
||||
- ⚠️ WARNING 'gopls' config not found. Ensure that vim.lsp.config('gopls') was called.
|
||||
- gopls:
|
||||
|
||||
- ⚠️ WARNING 'graphql' config not found. Ensure that vim.lsp.config('graphql') was called.
|
||||
- graphql:
|
||||
|
||||
- ⚠️ WARNING 'html' config not found. Ensure that vim.lsp.config('html') was called.
|
||||
- html:
|
||||
|
||||
- ⚠️ WARNING 'jdtls' config not found. Ensure that vim.lsp.config('jdtls') was called.
|
||||
- jdtls:
|
||||
|
||||
- ⚠️ WARNING 'lua_ls' config not found. Ensure that vim.lsp.config('lua_ls') was called.
|
||||
- lua_ls:
|
||||
|
||||
- ⚠️ WARNING 'prismals' config not found. Ensure that vim.lsp.config('prismals') was called.
|
||||
- prismals:
|
||||
|
||||
- ⚠️ WARNING 'pyright' config not found. Ensure that vim.lsp.config('pyright') was called.
|
||||
- pyright:
|
||||
|
||||
- ⚠️ WARNING 'svelte' config not found. Ensure that vim.lsp.config('svelte') was called.
|
||||
- svelte:
|
||||
|
||||
- ⚠️ WARNING 'tailwindcss' config not found. Ensure that vim.lsp.config('tailwindcss') was called.
|
||||
- tailwindcss:
|
||||
|
||||
- ⚠️ WARNING 'ts_ls' config not found. Ensure that vim.lsp.config('ts_ls') was called.
|
||||
- ts_ls:
|
||||
|
||||
|
||||
vim.lsp: File Watcher ~
|
||||
- file watching "(workspace/didChangeWatchedFiles)" disabled on all clients
|
||||
|
||||
vim.lsp: Position Encodings ~
|
||||
- No active clients
|
||||
|
||||
==============================================================================
|
||||
vim.provider: ✅
|
||||
|
||||
Clipboard (optional) ~
|
||||
- ✅ OK Clipboard tool found: pbcopy
|
||||
|
||||
Node.js provider (optional) ~
|
||||
- Node.js: v22.11.0
|
||||
|
||||
- Nvim node.js host: /Users/carlos/.config/yarn/global//node_modules/neovim/bin/cli.js
|
||||
|
||||
Perl provider (optional) ~
|
||||
- Disabled (loaded_perl_provider=0).
|
||||
|
||||
Python 3 provider (optional) ~
|
||||
- pyenv: Path: /opt/homebrew/Cellar/pyenv/2.6.5/libexec/pyenv
|
||||
- pyenv: Root: /Users/carlos/.pyenv
|
||||
- `g:python3_host_prog` is not set. Searching for python3.12 in the environment.
|
||||
- Executable: /opt/homebrew/bin/python3.12
|
||||
- Python version: 3.12.11
|
||||
- pynvim version: 0.5.2
|
||||
- ✅ OK Latest pynvim is installed.
|
||||
|
||||
Python virtualenv ~
|
||||
- ✅ OK no $VIRTUAL_ENV
|
||||
|
||||
Ruby provider (optional) ~
|
||||
- Disabled (loaded_ruby_provider=0).
|
||||
|
||||
==============================================================================
|
||||
vim.treesitter: ✅
|
||||
|
||||
Treesitter features ~
|
||||
- Treesitter ABI support: min 13, max 15
|
||||
- WASM parser support: false
|
||||
|
||||
Treesitter parsers ~
|
||||
- ✅ OK Parser: bash ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/bash.so
|
||||
- ✅ OK Parser: c ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/c.so
|
||||
- ✅ OK Parser: c ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/c.so
|
||||
- ✅ OK Parser: css ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/css.so
|
||||
- ✅ OK Parser: diff ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/diff.so
|
||||
- ✅ OK Parser: dockerfile ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/dockerfile.so
|
||||
- ✅ OK Parser: gitignore ABI: 13, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/gitignore.so
|
||||
- ✅ OK Parser: graphql ABI: 13, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/graphql.so
|
||||
- ✅ OK Parser: html ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/html.so
|
||||
- ✅ OK Parser: java ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/java.so
|
||||
- ✅ OK Parser: javascript ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/javascript.so
|
||||
- ✅ OK Parser: json ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/json.so
|
||||
- ✅ OK Parser: latex ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/latex.so
|
||||
- ✅ OK Parser: lua ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/lua.so
|
||||
- ✅ OK Parser: lua ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/lua.so
|
||||
- ✅ OK Parser: markdown ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/markdown.so
|
||||
- ✅ OK Parser: markdown ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/markdown.so
|
||||
- ✅ OK Parser: markdown_inline ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/markdown_inline.so
|
||||
- ✅ OK Parser: markdown_inline ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/markdown_inline.so
|
||||
- ✅ OK Parser: prisma ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/prisma.so
|
||||
- ✅ OK Parser: query ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/query.so
|
||||
- ✅ OK Parser: query ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/query.so
|
||||
- ✅ OK Parser: regex ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/regex.so
|
||||
- ✅ OK Parser: sql ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/sql.so
|
||||
- ✅ OK Parser: svelte ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/svelte.so
|
||||
- ✅ OK Parser: tsx ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/tsx.so
|
||||
- ✅ OK Parser: typescript ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/typescript.so
|
||||
- ✅ OK Parser: vim ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/vim.so
|
||||
- ✅ OK Parser: vim ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/vim.so
|
||||
- ✅ OK Parser: vimdoc ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/vimdoc.so
|
||||
- ✅ OK Parser: vimdoc ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/vimdoc.so
|
||||
- ✅ OK Parser: yaml ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/yaml.so
|
||||
|
||||
577
checkhealth_fixed.log
Normal file
577
checkhealth_fixed.log
Normal file
@@ -0,0 +1,577 @@
|
||||
|
||||
==============================================================================
|
||||
CopilotChat: ✅
|
||||
|
||||
CopilotChat.nvim [core] ~
|
||||
- ✅ OK nvim: NVIM v0.11.3
|
||||
Build type: Release
|
||||
LuaJIT 2.1.1753364724
|
||||
Run "nvim -V1 -v" for more info
|
||||
- ✅ OK setup: called
|
||||
|
||||
CopilotChat.nvim [commands] ~
|
||||
- ✅ OK curl: curl 8.7.1 (x86_64-apple-darwin24.0) libcurl/8.7.1 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.12 nghttp2/1.64.0
|
||||
Release-Date: 2024-03-27
|
||||
Protocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns ldap ldaps mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
|
||||
Features: alt-svc AsynchDNS GSS-API HSTS HTTP2 HTTPS-proxy IPv6 Kerberos Largefile libz MultiSSL NTLM SPNEGO SSL threadsafe UnixSockets
|
||||
- ✅ OK git: git version 2.50.1
|
||||
- ✅ OK rg: ripgrep 14.1.1
|
||||
|
||||
features:+pcre2
|
||||
simd(compile):+NEON
|
||||
simd(runtime):+NEON
|
||||
|
||||
PCRE2 10.43 is available (JIT is available)
|
||||
- ✅ OK lynx: Lynx Version 2.9.2 (31 May 2024)
|
||||
libwww-FM 2.14, SSL-MM 1.4.1, OpenSSL 3.5.1, ncurses 6.5.20240427
|
||||
Built on darwin24.2.0 (May 31 2024 23:03:20).
|
||||
|
||||
Copyrights held by the Lynx Developers Group,
|
||||
the University of Kansas, CERN, and other contributors.
|
||||
Distributed under the GNU General Public License (Version 2).
|
||||
See https://lynx.invisible-island.net/ and the online help for more information.
|
||||
|
||||
See http://www.openssl.org/ for information about OpenSSL.
|
||||
|
||||
CopilotChat.nvim [dependencies] ~
|
||||
- ✅ OK plenary: installed
|
||||
- ✅ OK copilot: copilot.lua
|
||||
- ✅ OK vim.ui.select: overridden by `@/Users/carlos/.local/share/nvim/lazy/dressing.nvim/lua/dressing/patch.lua`
|
||||
- ✅ OK tiktoken_core: installed
|
||||
- ✅ OK treesitter[markdown]: installed
|
||||
- ✅ OK treesitter[diff]: installed
|
||||
|
||||
==============================================================================
|
||||
avante: ✅
|
||||
|
||||
avante.nvim ~
|
||||
- ✅ OK Found required plugin: nvim-lua/plenary.nvim
|
||||
- ✅ OK Found required plugin: MunifTanjim/nui.nvim
|
||||
- ✅ OK Found icons plugin (nvim-web-devicons or mini.icons)
|
||||
- ✅ OK Using native input provider (no additional dependencies required)
|
||||
|
||||
TreeSitter Dependencies ~
|
||||
- ✅ OK All essential TreeSitter parsers are installed
|
||||
- ✅ OK TreeSitter highlighter is available
|
||||
|
||||
==============================================================================
|
||||
copilot: 1 ❌
|
||||
|
||||
{copilot.lua} ~
|
||||
- {copilot.lua} GitHub Copilot plugin for Neovim
|
||||
|
||||
Copilot Dependencies ~
|
||||
- ✅ OK `node` found: v22.11.0
|
||||
|
||||
Copilot Authentication ~
|
||||
- No environment token set (`GITHUB_COPILOT_TOKEN` or `GH_COPILOT_TOKEN`)
|
||||
- ✅ OK Local credentials file found
|
||||
- Location: `/Users/carlos/.config/github-copilot/apps.json`
|
||||
- ❌ ERROR Copilot LSP client not available
|
||||
- Check that the plugin is properly loaded and configured
|
||||
- Or restart Neovim if the plugin was just installed
|
||||
|
||||
==============================================================================
|
||||
dap: ✅
|
||||
|
||||
dap: Adapters ~
|
||||
|
||||
dap.adapter: node2 ~
|
||||
- ✅ OK is executable: node
|
||||
|
||||
dap.adapter: java ~
|
||||
- Adapter is a function. Can't validate it
|
||||
|
||||
dap: Sessions ~
|
||||
- ✅ OK No active sessions
|
||||
|
||||
==============================================================================
|
||||
dressing: ✅
|
||||
|
||||
dressing.nvim ~
|
||||
- ✅ OK vim.ui.input active
|
||||
- ✅ OK vim.ui.select active: telescope
|
||||
|
||||
==============================================================================
|
||||
fzf_lua: ✅
|
||||
|
||||
fzf-lua [required] ~
|
||||
- ✅ OK 'fzf' `0.65.0 (brew)`
|
||||
- ✅ OK 'git' `git version 2.50.1`
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
|
||||
fzf-lua [optional] ~
|
||||
- ✅ OK `nvim-web-devicons` found
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
- ✅ OK 'bat' `bat 0.25.0`
|
||||
- ✅ OK 'delta' `delta 0.18.2`
|
||||
|
||||
fzf-lua [optional:media] ~
|
||||
- ✅ OK 'viu' `viu 1.5.1`
|
||||
- ✅ OK 'chafa' `Chafa version 1.16.2`
|
||||
- ✅ OK 'ueberzugpp' `ueberzugpp 2.9.6`
|
||||
|
||||
fzf-lua [env] ~
|
||||
- ✅ OK `$FZF_DEFAULT_OPTS` is set to:
|
||||
--color=fg:#CBE0F0,bg:#011628,hl:#B388FF,fg+:#CBE0F0,bg+:#143652,hl+:#B388FF,info:#06BCE4,prompt:#2CF9ED,pointer:#2CF9ED,marker:#2CF9ED,spinner:#2CF9ED,header:#2CF9ED
|
||||
- ✅ OK `FZF_DEFAULT_OPTS_FILE` is not set
|
||||
|
||||
==============================================================================
|
||||
img-clip: ✅
|
||||
|
||||
img-clip.nvim ~
|
||||
- ✅ OK `pngpaste` is installed
|
||||
|
||||
==============================================================================
|
||||
lazy: 2 ⚠️
|
||||
|
||||
lazy.nvim ~
|
||||
- {lazy.nvim} version `11.17.1`
|
||||
- ✅ OK {git} `version 2.50.1`
|
||||
- ✅ OK no existing packages found by other package managers
|
||||
- ✅ OK packer_compiled.lua not found
|
||||
|
||||
luarocks ~
|
||||
- checking `luarocks` installation
|
||||
- ✅ OK no plugins require `luarocks`, so you can ignore any warnings below
|
||||
- ✅ OK {luarocks} `/opt/homebrew/bin/luarocks 3.12.2`
|
||||
- ⚠️ WARNING `lua` version `5.1` needed, but found `Lua 5.4.8 Copyright (C) 1994-2025 Lua.org, PUC-Rio`
|
||||
- ⚠️ WARNING {lua5.1} or {lua} or {lua-5.1} version `5.1` not installed
|
||||
|
||||
==============================================================================
|
||||
luasnip: ✅
|
||||
|
||||
luasnip ~
|
||||
- ✅ OK jsregexp is installed
|
||||
|
||||
==============================================================================
|
||||
mason: ✅
|
||||
|
||||
mason.nvim ~
|
||||
- ✅ OK mason.nvim version v2.0.1
|
||||
- ✅ OK PATH: prepend
|
||||
- ✅ OK Providers:
|
||||
mason.providers.registry-api
|
||||
mason.providers.client
|
||||
- ✅ OK neovim version >= 0.10.0
|
||||
|
||||
mason.nvim [Registries] ~
|
||||
- ✅ OK Registry `github.com/mason-org/mason-registry version: 2025-07-28-rusty-action` is installed.
|
||||
|
||||
mason.nvim [Core utils] ~
|
||||
- ✅ OK unzip: `UnZip 6.00 of 20 April 2009, by Info-ZIP, with modifications by Apple Inc.`
|
||||
- ✅ OK wget: `GNU Wget 1.25.0, a non-interactive network retriever.`
|
||||
- ✅ OK curl: `curl 8.7.1 (x86_64-apple-darwin24.0) libcurl/8.7.1 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.12 nghttp2/1.64.0`
|
||||
- ✅ OK gzip: `Apple gzip 457.120.3`
|
||||
- ✅ OK tar: `bsdtar 3.5.3 - libarchive 3.7.4 zlib/1.2.12 liblzma/5.4.3 bz2lib/1.0.8 `
|
||||
- ✅ OK bash: `GNU bash, version 3.2.57(1)-release (arm64-apple-darwin24)`
|
||||
- ✅ OK sh: `Ok`
|
||||
|
||||
mason.nvim [Languages] ~
|
||||
- ✅ OK Go: `go version go1.24.5 darwin/arm64`
|
||||
- ✅ OK luarocks: `/opt/homebrew/bin/luarocks 3.12.2`
|
||||
- ✅ OK cargo: `cargo 1.82.0 (8f40fc59f 2024-08-21)`
|
||||
- ✅ OK Ruby: `ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin24]`
|
||||
- ✅ OK node: `v22.11.0`
|
||||
- ✅ OK npm: `11.4.2`
|
||||
- ✅ OK PHP: `PHP 8.4.10 (cli) (built: Jul 2 2025 02:22:42) (NTS)`
|
||||
- ✅ OK Composer: `Composer version 2.8.10 2025-07-10 19:08:33`
|
||||
- ✅ OK RubyGem: `3.5.3`
|
||||
- ✅ OK python: `Python 3.13.5`
|
||||
- ✅ OK java: `openjdk version "23.0.2" 2025-01-21`
|
||||
- ✅ OK javac: `javac 23.0.2`
|
||||
- ✅ OK julia: `julia version 1.11.6`
|
||||
- ✅ OK pip: `pip 25.1.1 from /opt/homebrew/lib/python3.13/site-packages/pip (python 3.13)`
|
||||
- ✅ OK python venv: `Ok`
|
||||
|
||||
==============================================================================
|
||||
mason-lspconfig: ✅
|
||||
|
||||
mason-lspconfig.nvim ~
|
||||
- ✅ OK Neovim v0.11
|
||||
- ✅ OK mason.nvim v2
|
||||
|
||||
==============================================================================
|
||||
mcphub: 1 ⚠️
|
||||
|
||||
mcphub.nvim ~
|
||||
- mcphub.nvim version: 6.1.0
|
||||
- mcp-hub binary:
|
||||
- mcp-hub required version: 4.2.0
|
||||
- mcp-hub installed version: 4.2.0
|
||||
- ✅ OK mcp-hub version 4.2.0 is compatible
|
||||
|
||||
Plugin Dependencies: ~
|
||||
- ✅ OK plenary.nvim installed
|
||||
|
||||
Libraries: ~
|
||||
- ✅ OK curl installed
|
||||
- ✅ OK node installed
|
||||
- ✅ OK uv installed
|
||||
|
||||
Chat plugins ~
|
||||
- ⚠️ WARNING codecompanion.nvim not found
|
||||
- ✅ OK avante.nvim installed
|
||||
- ✅ OK CopilotChat.nvim installed
|
||||
|
||||
==============================================================================
|
||||
nvim-treesitter: ✅
|
||||
|
||||
Installation ~
|
||||
- ✅ OK `tree-sitter` found 0.25.8 (parser generator, only needed for :TSInstallFromGrammar)
|
||||
- ✅ OK `node` found v22.11.0 (only needed for :TSInstallFromGrammar)
|
||||
- ✅ OK `git` executable found.
|
||||
- ✅ OK `cc` executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
|
||||
Version: Apple clang version 17.0.0 (clang-1700.0.13.5)
|
||||
- ✅ OK Neovim was compiled with tree-sitter runtime ABI version 15 (required >=13). Parsers must be compatible with runtime ABI.
|
||||
|
||||
OS Info:
|
||||
{
|
||||
machine = "arm64",
|
||||
release = "24.5.0",
|
||||
sysname = "Darwin",
|
||||
version = "Darwin Kernel Version 24.5.0: Tue Apr 22 19:54:33 PDT 2025; root:xnu-11417.121.6~2/RELEASE_ARM64_T8122"
|
||||
} ~
|
||||
|
||||
Parser/Features H L F I J
|
||||
- bash ✓ ✓ ✓ . ✓
|
||||
- c ✓ ✓ ✓ ✓ ✓
|
||||
- css ✓ . ✓ ✓ ✓
|
||||
- diff ✓ . ✓ . ✓
|
||||
- dockerfile ✓ . . . ✓
|
||||
- gitignore ✓ . . . ✓
|
||||
- graphql ✓ . . ✓ ✓
|
||||
- html ✓ ✓ ✓ ✓ ✓
|
||||
- java ✓ ✓ ✓ ✓ ✓
|
||||
- javascript ✓ ✓ ✓ ✓ ✓
|
||||
- json ✓ ✓ ✓ ✓ .
|
||||
- latex ✓ . ✓ . ✓
|
||||
- lua ✓ ✓ ✓ ✓ ✓
|
||||
- markdown ✓ . ✓ ✓ ✓
|
||||
- markdown_inline ✓ . . . ✓
|
||||
- prisma ✓ . ✓ . ✓
|
||||
- query ✓ ✓ ✓ ✓ ✓
|
||||
- regex ✓ . . . .
|
||||
- sql ✓ . ✓ ✓ ✓
|
||||
- svelte ✓ ✓ ✓ ✓ ✓
|
||||
- tsx ✓ ✓ ✓ ✓ ✓
|
||||
- typescript ✓ ✓ ✓ ✓ ✓
|
||||
- vim ✓ ✓ ✓ . ✓
|
||||
- vimdoc ✓ . . . ✓
|
||||
- yaml ✓ ✓ ✓ ✓ ✓
|
||||
|
||||
Legend: H[ighlight], L[ocals], F[olds], I[ndents], In[j]ections
|
||||
+) multiple parsers found, only one will be used
|
||||
x) errors found in the query, try to run :TSUpdate {lang} ~
|
||||
|
||||
==============================================================================
|
||||
render-markdown: ✅
|
||||
|
||||
render-markdown.nvim [version] ~
|
||||
- ✅ OK plugin 8.6.9
|
||||
- ✅ OK neovim >= 0.11
|
||||
|
||||
render-markdown.nvim [configuration] ~
|
||||
- ✅ OK valid
|
||||
|
||||
render-markdown.nvim [treesitter] ~
|
||||
- ✅ OK markdown: parser installed
|
||||
- ✅ OK markdown: highlights ~/.local/share/nvim/lazy/nvim-treesitter/queries/markdown/highlights.scm
|
||||
- ✅ OK markdown: highlighter enabled
|
||||
- ✅ OK markdown_inline: parser installed
|
||||
- ✅ OK markdown_inline: highlights ~/.local/share/nvim/lazy/nvim-treesitter/queries/markdown_inline/highlights.scm
|
||||
- ✅ OK html: parser installed
|
||||
|
||||
render-markdown.nvim [icons] ~
|
||||
- ✅ OK using: nvim-web-devicons
|
||||
|
||||
render-markdown.nvim [executables] ~
|
||||
|
||||
render-markdown.nvim [conflicts] ~
|
||||
- ✅ OK headlines: not installed
|
||||
- ✅ OK markview: not installed
|
||||
- ✅ OK obsidian: not installed
|
||||
|
||||
==============================================================================
|
||||
snacks: 4 ⚠️ 3 ❌
|
||||
|
||||
Snacks ~
|
||||
- ✅ OK setup called
|
||||
|
||||
Snacks.bigfile ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.dashboard ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR setup did not run
|
||||
|
||||
Snacks.explorer ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.image ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ✅ OK 'kitty' `kitty 0.42.2 created by Kovid Goyal`
|
||||
- ✅ OK 'magick' `Version: ImageMagick 7.1.2-0 Q16-HDRI aarch64 23234 https://imagemagick.org`
|
||||
- ✅ OK 'convert' `WARNING: The convert command is deprecated in IMv7, use "magick" instead of "convert" or "magick convert"`
|
||||
- ✅ OK `wezterm` detected and supported
|
||||
- ⚠️ WARNING `wezterm` does not support placeholders. Fallback rendering will be used
|
||||
- ⚠️ WARNING Inline images are disabled
|
||||
- ✅ OK `tmux` detected and supported
|
||||
- ✅ OK Terminal Dimensions:
|
||||
- {size}: `0` x `0` pixels
|
||||
- {scale}: `1.00`
|
||||
- {cell}: `0` x `0` pixels
|
||||
- ✅ OK Available Treesitter languages:
|
||||
`css`, `html`, `javascript`, `latex`, `markdown_inline`, `markdown`, `svelte`, `tsx`
|
||||
- ⚠️ WARNING Missing Treesitter languages:
|
||||
`norg`, `scss`, `typst`, `vue`
|
||||
- ⚠️ WARNING Image rendering in docs with missing treesitter parsers won't work
|
||||
- ✅ OK 'gs' `10.05.1`
|
||||
- ✅ OK PDF files are supported
|
||||
- ✅ OK 'tectonic' `tectonic 0.15.0Tectonic 0.15.0`
|
||||
- ✅ OK LaTeX math equations are supported
|
||||
- ✅ OK 'mmdc' `node:internal/modules/esm/resolve:838`
|
||||
- ✅ OK Mermaid diagrams are supported
|
||||
- ✅ OK your terminal supports the kitty graphics protocol
|
||||
|
||||
Snacks.input ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR `vim.ui.input` is not set to `Snacks.input`
|
||||
|
||||
Snacks.lazygit ~
|
||||
- ✅ OK {lazygit} installed
|
||||
|
||||
Snacks.notifier ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ✅ OK is ready
|
||||
|
||||
Snacks.picker ~
|
||||
- ✅ OK setup {enabled}
|
||||
- ❌ ERROR `vim.ui.select` is not set to `Snacks.picker.select`
|
||||
- ✅ OK Available Treesitter languages:
|
||||
`regex`
|
||||
- ✅ OK 'git' `git version 2.50.1`
|
||||
- ✅ OK 'rg' `ripgrep 14.1.1`
|
||||
- ✅ OK `Snacks.picker.grep()` is available
|
||||
- ✅ OK 'fd' `fd 10.2.0`
|
||||
- ✅ OK `Snacks.picker.files()` is available
|
||||
- ✅ OK `Snacks.picker.explorer()` is available
|
||||
- ✅ OK `SQLite3` is available
|
||||
|
||||
Snacks.quickfile ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.scope ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.scroll ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.statuscolumn ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
Snacks.terminal ~
|
||||
- ✅ OK shell configured
|
||||
- `vim.o.shell`: /bin/zsh
|
||||
- `parsed`: { "/bin/zsh" }
|
||||
|
||||
Snacks.toggle ~
|
||||
- ✅ OK {which-key} is installed
|
||||
|
||||
Snacks.words ~
|
||||
- ✅ OK setup {enabled}
|
||||
|
||||
==============================================================================
|
||||
telescope: ✅
|
||||
|
||||
Checking for required plugins ~
|
||||
- ✅ OK plenary installed.
|
||||
- ✅ OK nvim-treesitter installed.
|
||||
|
||||
Checking external dependencies ~
|
||||
- ✅ OK rg: found ripgrep 14.1.1
|
||||
- ✅ OK fd: found fd 10.2.0
|
||||
|
||||
===== Installed extensions ===== ~
|
||||
|
||||
Telescope Extension: `dap` ~
|
||||
- No healthcheck provided
|
||||
|
||||
Telescope Extension: `fzf` ~
|
||||
- ✅ OK lib working as expected
|
||||
- ✅ OK file_sorter correctly configured
|
||||
- ✅ OK generic_sorter correctly configured
|
||||
|
||||
==============================================================================
|
||||
vim.deprecated: ✅
|
||||
|
||||
- ✅ OK No deprecated functions detected
|
||||
|
||||
==============================================================================
|
||||
vim.health: 1 ❌
|
||||
|
||||
Configuration ~
|
||||
- ✅ OK no issues found
|
||||
|
||||
Runtime ~
|
||||
- ✅ OK $VIMRUNTIME: /opt/homebrew/Cellar/neovim/0.11.3/share/nvim/runtime
|
||||
|
||||
Performance ~
|
||||
- ✅ OK Build type: Release
|
||||
|
||||
Remote Plugins ~
|
||||
- ✅ OK Up to date
|
||||
|
||||
terminal ~
|
||||
- key_backspace (kbs) terminfo entry: `key_backspace=^H`
|
||||
- key_dc (kdch1) terminfo entry: `key_dc=\E[3~`
|
||||
- $TERM_PROGRAM="vscode"
|
||||
- $COLORTERM="truecolor"
|
||||
|
||||
tmux ~
|
||||
- ✅ OK escape-time: 10
|
||||
- ✅ OK focus-events: on
|
||||
- $TERM: xterm-256color
|
||||
- default-terminal: tmux-256color
|
||||
- ❌ ERROR $TERM differs from the tmux `default-terminal` setting. Colors might look wrong.
|
||||
- ADVICE:
|
||||
- $TERM may have been set by some rc (.bashrc, .zshrc, ...).
|
||||
|
||||
External Tools ~
|
||||
- ✅ OK ripgrep 14.1.1 (/opt/homebrew/bin/rg)
|
||||
|
||||
==============================================================================
|
||||
vim.lsp: 15 ⚠️
|
||||
|
||||
- LSP log level : WARN
|
||||
- Log path: /Users/carlos/.local/state/nvim/lsp.log
|
||||
- Log size: 9416 KB
|
||||
|
||||
vim.lsp: Active Clients ~
|
||||
- No active clients
|
||||
|
||||
vim.lsp: Enabled Configurations ~
|
||||
- ⚠️ WARNING 'css_variables' config not found. Ensure that vim.lsp.config('css_variables') was called.
|
||||
- css_variables:
|
||||
|
||||
- ⚠️ WARNING 'cssls' config not found. Ensure that vim.lsp.config('cssls') was called.
|
||||
- cssls:
|
||||
|
||||
- ⚠️ WARNING 'cssmodules_ls' config not found. Ensure that vim.lsp.config('cssmodules_ls') was called.
|
||||
- cssmodules_ls:
|
||||
|
||||
- ⚠️ WARNING 'emmet_ls' config not found. Ensure that vim.lsp.config('emmet_ls') was called.
|
||||
- emmet_ls:
|
||||
|
||||
- ⚠️ WARNING 'eslint' config not found. Ensure that vim.lsp.config('eslint') was called.
|
||||
- eslint:
|
||||
|
||||
- ⚠️ WARNING 'gopls' config not found. Ensure that vim.lsp.config('gopls') was called.
|
||||
- gopls:
|
||||
|
||||
- ⚠️ WARNING 'graphql' config not found. Ensure that vim.lsp.config('graphql') was called.
|
||||
- graphql:
|
||||
|
||||
- ⚠️ WARNING 'html' config not found. Ensure that vim.lsp.config('html') was called.
|
||||
- html:
|
||||
|
||||
- ⚠️ WARNING 'jdtls' config not found. Ensure that vim.lsp.config('jdtls') was called.
|
||||
- jdtls:
|
||||
|
||||
- ⚠️ WARNING 'lua_ls' config not found. Ensure that vim.lsp.config('lua_ls') was called.
|
||||
- lua_ls:
|
||||
|
||||
- ⚠️ WARNING 'prismals' config not found. Ensure that vim.lsp.config('prismals') was called.
|
||||
- prismals:
|
||||
|
||||
- ⚠️ WARNING 'pyright' config not found. Ensure that vim.lsp.config('pyright') was called.
|
||||
- pyright:
|
||||
|
||||
- ⚠️ WARNING 'svelte' config not found. Ensure that vim.lsp.config('svelte') was called.
|
||||
- svelte:
|
||||
|
||||
- ⚠️ WARNING 'tailwindcss' config not found. Ensure that vim.lsp.config('tailwindcss') was called.
|
||||
- tailwindcss:
|
||||
|
||||
- ⚠️ WARNING 'ts_ls' config not found. Ensure that vim.lsp.config('ts_ls') was called.
|
||||
- ts_ls:
|
||||
|
||||
|
||||
vim.lsp: File Watcher ~
|
||||
- file watching "(workspace/didChangeWatchedFiles)" disabled on all clients
|
||||
|
||||
vim.lsp: Position Encodings ~
|
||||
- No active clients
|
||||
|
||||
==============================================================================
|
||||
vim.provider: ✅
|
||||
|
||||
Clipboard (optional) ~
|
||||
- ✅ OK Clipboard tool found: pbcopy
|
||||
|
||||
Node.js provider (optional) ~
|
||||
- Node.js: v22.11.0
|
||||
|
||||
- Nvim node.js host: /Users/carlos/.config/yarn/global//node_modules/neovim/bin/cli.js
|
||||
|
||||
Perl provider (optional) ~
|
||||
- Disabled (loaded_perl_provider=0).
|
||||
|
||||
Python 3 provider (optional) ~
|
||||
- pyenv: Path: /opt/homebrew/Cellar/pyenv/2.6.5/libexec/pyenv
|
||||
- pyenv: Root: /Users/carlos/.pyenv
|
||||
- `g:python3_host_prog` is not set. Searching for python3.12 in the environment.
|
||||
- Executable: /opt/homebrew/bin/python3.12
|
||||
- Python version: 3.12.11
|
||||
- pynvim version: 0.5.2
|
||||
- ✅ OK Latest pynvim is installed.
|
||||
|
||||
Python virtualenv ~
|
||||
- ✅ OK no $VIRTUAL_ENV
|
||||
|
||||
Ruby provider (optional) ~
|
||||
- Disabled (loaded_ruby_provider=0).
|
||||
|
||||
==============================================================================
|
||||
vim.treesitter: ✅
|
||||
|
||||
Treesitter features ~
|
||||
- Treesitter ABI support: min 13, max 15
|
||||
- WASM parser support: false
|
||||
|
||||
Treesitter parsers ~
|
||||
- ✅ OK Parser: bash ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/bash.so
|
||||
- ✅ OK Parser: c ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/c.so
|
||||
- ✅ OK Parser: c ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/c.so
|
||||
- ✅ OK Parser: css ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/css.so
|
||||
- ✅ OK Parser: diff ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/diff.so
|
||||
- ✅ OK Parser: dockerfile ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/dockerfile.so
|
||||
- ✅ OK Parser: gitignore ABI: 13, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/gitignore.so
|
||||
- ✅ OK Parser: graphql ABI: 13, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/graphql.so
|
||||
- ✅ OK Parser: html ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/html.so
|
||||
- ✅ OK Parser: java ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/java.so
|
||||
- ✅ OK Parser: javascript ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/javascript.so
|
||||
- ✅ OK Parser: json ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/json.so
|
||||
- ✅ OK Parser: latex ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/latex.so
|
||||
- ✅ OK Parser: lua ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/lua.so
|
||||
- ✅ OK Parser: lua ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/lua.so
|
||||
- ✅ OK Parser: markdown ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/markdown.so
|
||||
- ✅ OK Parser: markdown ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/markdown.so
|
||||
- ✅ OK Parser: markdown_inline ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/markdown_inline.so
|
||||
- ✅ OK Parser: markdown_inline ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/markdown_inline.so
|
||||
- ✅ OK Parser: prisma ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/prisma.so
|
||||
- ✅ OK Parser: query ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/query.so
|
||||
- ✅ OK Parser: query ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/query.so
|
||||
- ✅ OK Parser: regex ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/regex.so
|
||||
- ✅ OK Parser: sql ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/sql.so
|
||||
- ✅ OK Parser: svelte ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/svelte.so
|
||||
- ✅ OK Parser: tsx ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/tsx.so
|
||||
- ✅ OK Parser: typescript ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/typescript.so
|
||||
- ✅ OK Parser: vim ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/vim.so
|
||||
- ✅ OK Parser: vim ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/vim.so
|
||||
- ✅ OK Parser: vimdoc ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/vimdoc.so
|
||||
- ✅ OK Parser: vimdoc ABI: 14, path: /opt/homebrew/Cellar/neovim/0.11.3/lib/nvim/parser/vimdoc.so
|
||||
- ✅ OK Parser: yaml ABI: 14, path: /Users/carlos/.local/share/nvim/lazy/nvim-treesitter/parser/yaml.so
|
||||
|
||||
28
cleanup_deprecated_adapters.lua
Normal file
28
cleanup_deprecated_adapters.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
-- Cleanup script for deprecated debug adapters
|
||||
-- Run this in Neovim with :lua loadfile("cleanup_deprecated_adapters.lua")()
|
||||
|
||||
local function cleanup_deprecated_adapters()
|
||||
local mason_registry = require("mason-registry")
|
||||
|
||||
-- List of deprecated adapters to remove
|
||||
local deprecated_adapters = {
|
||||
"node-debug2-adapter",
|
||||
"chrome-debug-adapter"
|
||||
}
|
||||
|
||||
print("🧹 Cleaning up deprecated debug adapters...")
|
||||
|
||||
for _, adapter in ipairs(deprecated_adapters) do
|
||||
if mason_registry.is_installed(adapter) then
|
||||
print("🗑️ Uninstalling " .. adapter)
|
||||
mason_registry.uninstall(adapter)
|
||||
else
|
||||
print("✅ " .. adapter .. " is not installed")
|
||||
end
|
||||
end
|
||||
|
||||
print("✨ Cleanup complete! Make sure to restart Neovim for changes to take effect.")
|
||||
end
|
||||
|
||||
-- Run the cleanup
|
||||
cleanup_deprecated_adapters()
|
||||
228
keybind.json
Normal file
228
keybind.json
Normal file
@@ -0,0 +1,228 @@
|
||||
[
|
||||
{
|
||||
"key": "cmd+i",
|
||||
"command": "composerMode.agent"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-h",
|
||||
"command": "workbench.action.navigateLeft"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-l",
|
||||
"command": "workbench.action.navigateRight"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-k",
|
||||
"command": "workbench.action.navigateUp"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-j",
|
||||
"command": "workbench.action.navigateDown"
|
||||
},
|
||||
{
|
||||
"key": "space e",
|
||||
"command": "runCommands",
|
||||
"args": {
|
||||
"commands": [
|
||||
"workbench.action.toggleSidebarVisibility",
|
||||
"workbench.files.action.focusFilesExplorer"
|
||||
]
|
||||
},
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus) && !sideBarFocus"
|
||||
},
|
||||
{
|
||||
"key": "space e",
|
||||
"command": "runCommands",
|
||||
"args": {
|
||||
"commands": [
|
||||
"workbench.action.toggleSidebarVisibility",
|
||||
"workbench.action.focusActiveEditorGroup"
|
||||
]
|
||||
},
|
||||
"when": "vim.mode == 'Normal' && sideBarFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space e",
|
||||
"when": "vim.mode == 'Normal' && editorTextFocus && foldersViewVisible",
|
||||
"command": "workbench.action.toggleSidebarVisibility"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-w h",
|
||||
"command": "workbench.action.navigateLeft",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-w l",
|
||||
"command": "workbench.action.navigateRight",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-w k",
|
||||
"command": "workbench.action.navigateUp",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-w j",
|
||||
"command": "workbench.action.navigateDown",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space r",
|
||||
"command": "renameFile",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space x",
|
||||
"command": "filesExplorer.cut",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space d",
|
||||
"command": "deleteFile",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space a",
|
||||
"command": "explorer.newFile",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space s",
|
||||
"command": "explorer.openToSide",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "enter",
|
||||
"command": "explorer.openAndPassFocus",
|
||||
"when": "filesExplorerFocus && !explorerResourceIsFolder && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "enter",
|
||||
"command": "list.toggleExpand",
|
||||
"when": "filesExplorerFocus && explorerResourceIsFolder && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space d a",
|
||||
"command": "workbench.action.debug.selectandstart",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus) && debuggersAvailable"
|
||||
},
|
||||
{
|
||||
"key": "space d t",
|
||||
"command": "workbench.action.debug.stop",
|
||||
"when": "vim.mode == 'Normal' && editorTextFocus && inDebugMode && !focusedSessionIsAttached"
|
||||
},
|
||||
{
|
||||
"key": "space shift-s",
|
||||
"command": "runCommands",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus",
|
||||
"args": {
|
||||
"commands": [
|
||||
"workbench.action.splitEditorDown",
|
||||
"explorer.openAndPassFocus",
|
||||
"workbench.action.closeOtherEditors"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "space d o",
|
||||
"command": "workbench.action.debug.stepOver",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus) && inDebugMode && debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "space d b",
|
||||
"command": "editor.debug.action.toggleBreakpoint",
|
||||
"when": "vim.mode == 'Normal' && editorTextFocus"
|
||||
},
|
||||
{
|
||||
"key": "space d e",
|
||||
"command": "editor.debug.action.showDebugHover",
|
||||
"when": "vim.mode == 'Normal' && editorTextFocus && inDebugMode && debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "space d c",
|
||||
"command": "workbench.action.debug.continue",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus) && inDebugMode && debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "space w",
|
||||
"command": "workbench.action.files.save",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space q",
|
||||
"command": "workbench.action.closeActiveEditor",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space x a",
|
||||
"command": "workbench.action.closeAllEditors",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-e",
|
||||
"command": "editorScroll",
|
||||
"args": { "to": "down", "by": "line", "value": 10, "revealCursor": true },
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-y",
|
||||
"command": "editorScroll",
|
||||
"args": { "to": "up", "by": "line", "value": 10, "revealCursor": true },
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space n t",
|
||||
"command": "workbench.view.explorer",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space o",
|
||||
"command": "workbench.action.splitEditorRight",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "space i",
|
||||
"command": "workbench.action.splitEditorDown",
|
||||
"when": "vim.mode == 'Normal' && filesExplorerFocus && !inputFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-p",
|
||||
"command": "workbench.action.previousEditor",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "ctrl-n",
|
||||
"command": "workbench.action.nextEditor",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c c",
|
||||
"command": "workbench.action.openChat",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c q",
|
||||
"command": "workbench.action.closeChat",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c i",
|
||||
"command": "workbench.action.focusChatInput",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c n",
|
||||
"command": "workbench.action.newChat",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c k",
|
||||
"command": "workbench.action.keepChat",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
},
|
||||
{
|
||||
"key": "space c u",
|
||||
"command": "workbench.action.undoChatChanges",
|
||||
"when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
|
||||
}
|
||||
]
|
||||
151
lua/cargdev/core/compatibility.lua
Normal file
151
lua/cargdev/core/compatibility.lua
Normal file
@@ -0,0 +1,151 @@
|
||||
-- Compatibility layer for Lua version differences and deprecated APIs
|
||||
local M = {}
|
||||
|
||||
-- Handle Lua version compatibility
|
||||
local lua_version = _VERSION:match("%d+%.%d+")
|
||||
if lua_version then
|
||||
lua_version = tonumber(lua_version)
|
||||
end
|
||||
|
||||
-- Create compatibility functions for deprecated APIs
|
||||
if not vim.iter then
|
||||
-- Fallback for older Neovim versions
|
||||
vim.iter = function(t)
|
||||
local i = 0
|
||||
local n = #t
|
||||
return function()
|
||||
i = i + 1
|
||||
if i <= n then
|
||||
return i, t[i]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Modern vim.hl replacement for vim.highlight
|
||||
if not vim.hl then
|
||||
vim.hl = function(namespace, name, val)
|
||||
if vim.fn.hlexists(name) == 1 then
|
||||
vim.api.nvim_set_hl(namespace, name, val)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Modern vim.validate replacement
|
||||
local function modern_validate(name, value, validator, optional_or_msg)
|
||||
if type(validator) == "string" then
|
||||
-- Old style: vim.validate{name = {value, "string"}}
|
||||
if type(value) ~= validator then
|
||||
error(string.format("Expected %s to be %s, got %s", name, validator, type(value)))
|
||||
end
|
||||
elseif type(validator) == "function" then
|
||||
-- New style: vim.validate(name, value, validator, optional_or_msg)
|
||||
if not validator(value) then
|
||||
local msg = optional_or_msg or string.format("Validation failed for %s", name)
|
||||
error(msg)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if not vim.validate then
|
||||
vim.validate = modern_validate
|
||||
end
|
||||
|
||||
-- Modern vim.tbl_flatten replacement
|
||||
if not vim.tbl_flatten then
|
||||
vim.tbl_flatten = function(t)
|
||||
local result = {}
|
||||
for _, v in ipairs(t) do
|
||||
if type(v) == "table" then
|
||||
for _, sub_v in ipairs(v) do
|
||||
table.insert(result, sub_v)
|
||||
end
|
||||
else
|
||||
table.insert(result, v)
|
||||
end
|
||||
end
|
||||
return result
|
||||
end
|
||||
end
|
||||
|
||||
-- Ensure proper Lua runtime path for Lua 5.4 compatibility
|
||||
local function setup_lua_runtime()
|
||||
-- Add Lua paths for better compatibility
|
||||
local lua_paths = {
|
||||
"?.lua",
|
||||
"?/init.lua",
|
||||
"?/main.lua",
|
||||
vim.fn.stdpath("config") .. "/lua/?.lua",
|
||||
vim.fn.stdpath("config") .. "/lua/?/init.lua",
|
||||
vim.fn.stdpath("data") .. "/lazy/*/lua/?.lua",
|
||||
vim.fn.stdpath("data") .. "/lazy/*/lua/?/init.lua",
|
||||
}
|
||||
|
||||
package.path = table.concat(lua_paths, ";") .. ";" .. package.path
|
||||
end
|
||||
|
||||
-- Setup Lua language server with proper configuration
|
||||
local function setup_lua_ls()
|
||||
local lspconfig = require("lspconfig")
|
||||
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
||||
|
||||
lspconfig.lua_ls.setup({
|
||||
capabilities = capabilities,
|
||||
settings = {
|
||||
Lua = {
|
||||
diagnostics = {
|
||||
globals = { "vim" },
|
||||
disable = { "missing-fields" },
|
||||
},
|
||||
runtime = {
|
||||
version = "LuaJIT",
|
||||
path = {
|
||||
"?.lua",
|
||||
"?/init.lua",
|
||||
"?/main.lua",
|
||||
vim.fn.stdpath("config") .. "/lua/?.lua",
|
||||
vim.fn.stdpath("config") .. "/lua/?/init.lua",
|
||||
vim.fn.stdpath("data") .. "/lazy/*/lua/?.lua",
|
||||
vim.fn.stdpath("data") .. "/lazy/*/lua/?/init.lua",
|
||||
},
|
||||
},
|
||||
workspace = {
|
||||
checkThirdParty = false,
|
||||
library = {
|
||||
vim.fn.stdpath("config") .. "/lua",
|
||||
vim.fn.stdpath("data") .. "/lazy",
|
||||
"/opt/homebrew/Cellar/neovim/0.11.3/share/nvim/runtime/lua",
|
||||
},
|
||||
},
|
||||
telemetry = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
-- Initialize compatibility layer
|
||||
function M.setup()
|
||||
setup_lua_runtime()
|
||||
|
||||
-- Setup Lua LSP when available
|
||||
local ok, _ = pcall(require, "lspconfig")
|
||||
if ok then
|
||||
setup_lua_ls()
|
||||
end
|
||||
|
||||
-- Disable deprecated API warnings
|
||||
vim.deprecate = function() end
|
||||
|
||||
-- Set up proper error handling for deprecated functions
|
||||
local original_error = error
|
||||
error = function(msg, level)
|
||||
if msg and msg:match("deprecated") then
|
||||
return -- Silently ignore deprecated warnings
|
||||
end
|
||||
return original_error(msg, level)
|
||||
end
|
||||
end
|
||||
|
||||
return M
|
||||
7
lua/cargdev/core/function/highlights.lua
Normal file
7
lua/cargdev/core/function/highlights.lua
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Highlight .njk files as htmldjango for better templating syntax
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
pattern = "*.njk",
|
||||
callback = function()
|
||||
vim.cmd("set filetype=htmldjango")
|
||||
end,
|
||||
})
|
||||
313
lua/cargdev/core/function/notification_manager.lua
Normal file
313
lua/cargdev/core/function/notification_manager.lua
Normal file
@@ -0,0 +1,313 @@
|
||||
-- Custom notification manager to handle overlapping and improve UX
|
||||
local M = {}
|
||||
|
||||
-- Track active notifications to prevent overlapping
|
||||
local active_notifications = {}
|
||||
local notification_queue = {}
|
||||
|
||||
-- Function to show a notification without overlapping
|
||||
function M.show_notification(message, level, opts)
|
||||
level = level or vim.log.levels.INFO
|
||||
opts = opts or {}
|
||||
|
||||
-- Default options
|
||||
local default_opts = {
|
||||
timeout = 3000,
|
||||
title = "CarGDev Neovim",
|
||||
render = "minimal",
|
||||
stages = "fade_in_slide_out",
|
||||
position = "top_right",
|
||||
max_width = 50,
|
||||
max_height = 8,
|
||||
background_colour = "#000000",
|
||||
border_style = "rounded",
|
||||
}
|
||||
|
||||
-- Merge options
|
||||
for k, v in pairs(default_opts) do
|
||||
if opts[k] == nil then
|
||||
opts[k] = v
|
||||
end
|
||||
end
|
||||
|
||||
-- Check if we're in alpha dashboard
|
||||
local current_buf = vim.api.nvim_get_current_buf()
|
||||
local current_ft = vim.api.nvim_buf_get_option(current_buf, "filetype")
|
||||
|
||||
if current_ft == "alpha" then
|
||||
-- If in dashboard, use a different approach
|
||||
M.show_dashboard_notification(message, level, opts)
|
||||
return
|
||||
end
|
||||
|
||||
-- Use nvim-notify if available
|
||||
local notify_available = pcall(require, "notify")
|
||||
if notify_available then
|
||||
local notify = require("notify")
|
||||
|
||||
-- Position notification to avoid overlapping
|
||||
opts.on_open = function(win)
|
||||
-- Calculate position to avoid overlapping with other notifications
|
||||
local row = 2
|
||||
local col = vim.o.columns - 60
|
||||
|
||||
-- Adjust position if there are other notifications
|
||||
for _, notif in ipairs(active_notifications) do
|
||||
if notif.win and vim.api.nvim_win_is_valid(notif.win) then
|
||||
row = row + 10 -- Stack notifications vertically
|
||||
end
|
||||
end
|
||||
|
||||
-- Ensure notification doesn't go off-screen
|
||||
if row > vim.o.lines - 15 then
|
||||
row = 2
|
||||
col = col - 20
|
||||
end
|
||||
|
||||
vim.api.nvim_win_set_config(win, {
|
||||
row = row,
|
||||
col = col,
|
||||
relative = "editor",
|
||||
width = opts.max_width,
|
||||
height = opts.max_height,
|
||||
})
|
||||
|
||||
-- Track this notification
|
||||
table.insert(active_notifications, {
|
||||
win = win,
|
||||
message = message,
|
||||
timestamp = vim.loop.now(),
|
||||
})
|
||||
end
|
||||
|
||||
opts.on_close = function(win)
|
||||
-- Remove from active notifications
|
||||
for i, notif in ipairs(active_notifications) do
|
||||
if notif.win == win then
|
||||
table.remove(active_notifications, i)
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Show notification
|
||||
local notification_id = notify(message, level, opts)
|
||||
return notification_id
|
||||
else
|
||||
-- Fallback to echo instead of vim.notify to avoid circular dependency
|
||||
local icon = "💬"
|
||||
if level == vim.log.levels.ERROR then
|
||||
icon = "❌"
|
||||
elseif level == vim.log.levels.WARN then
|
||||
icon = "⚠️"
|
||||
elseif level == vim.log.levels.INFO then
|
||||
icon = "ℹ️"
|
||||
end
|
||||
|
||||
-- Use echo for fallback notifications
|
||||
vim.cmd("echo '" .. icon .. " " .. message .. "'")
|
||||
|
||||
-- Clear message after a delay
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("echo ''")
|
||||
end, opts.timeout or 3000)
|
||||
end
|
||||
end
|
||||
|
||||
-- Function to show notifications specifically for dashboard
|
||||
function M.show_dashboard_notification(message, level, opts)
|
||||
-- In dashboard, show minimal notifications
|
||||
local icon = "💬"
|
||||
if level == vim.log.levels.ERROR then
|
||||
icon = "❌"
|
||||
elseif level == vim.log.levels.WARN then
|
||||
icon = "⚠️"
|
||||
elseif level == vim.log.levels.INFO then
|
||||
icon = "ℹ️"
|
||||
end
|
||||
|
||||
-- Show message in status line or use echo
|
||||
local short_message = message:sub(1, 50)
|
||||
if #message > 50 then
|
||||
short_message = short_message .. "..."
|
||||
end
|
||||
|
||||
-- Use echo for dashboard notifications to avoid overlapping
|
||||
vim.cmd("echo '" .. icon .. " " .. short_message .. "'")
|
||||
|
||||
-- Clear message after a delay
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("echo ''")
|
||||
end, opts.timeout or 3000)
|
||||
end
|
||||
|
||||
-- Function to clear all notifications
|
||||
function M.clear_all_notifications()
|
||||
for _, notif in ipairs(active_notifications) do
|
||||
if notif.win and vim.api.nvim_win_is_valid(notif.win) then
|
||||
vim.api.nvim_win_close(notif.win, true)
|
||||
end
|
||||
end
|
||||
active_notifications = {}
|
||||
end
|
||||
|
||||
-- Function to show performance notification
|
||||
function M.show_performance_notification(message, level)
|
||||
M.show_notification("📊 " .. message, level, {
|
||||
title = "Performance Monitor",
|
||||
timeout = 4000,
|
||||
position = "top_right",
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to show LSP notification
|
||||
function M.show_lsp_notification(message, level)
|
||||
M.show_notification("🔧 " .. message, level, {
|
||||
title = "LSP Status",
|
||||
timeout = 3000,
|
||||
position = "top_right",
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to show file operation notification
|
||||
function M.show_file_notification(message, level)
|
||||
M.show_notification("📁 " .. message, level, {
|
||||
title = "File Operation",
|
||||
timeout = 2500,
|
||||
position = "top_right",
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to show plugin notification
|
||||
function M.show_plugin_notification(message, level)
|
||||
M.show_notification("🦥 " .. message, level, {
|
||||
title = "Plugin Manager",
|
||||
timeout = 3000,
|
||||
position = "top_right",
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to show startup notification
|
||||
function M.show_startup_notification(message, level)
|
||||
M.show_notification("🚀 " .. message, level, {
|
||||
title = "Startup",
|
||||
timeout = 2000,
|
||||
position = "top_right",
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to handle startup messages aggressively
|
||||
function M.handle_startup_messages()
|
||||
-- Clear any existing messages immediately
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
|
||||
-- Suppress all startup messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "I" -- No intro message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "c" -- No completion messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "F" -- No file info message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "W" -- No "written" message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "A" -- No attention message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "o" -- No overwrite messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "t" -- No truncation messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "T" -- No truncation messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "f" -- No file info messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "i" -- No intro messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "l" -- No line number messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "m" -- No modification messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "n" -- No line number messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "r" -- No read messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "s" -- No search messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "x" -- No truncation messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "O" -- No overwrite messages
|
||||
|
||||
-- Disable command line messages
|
||||
vim.opt.cmdheight = 0
|
||||
vim.opt.showmode = false
|
||||
|
||||
-- Clear any existing messages
|
||||
vim.cmd("echo ''")
|
||||
|
||||
-- Force clear any pending messages
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
end, 100)
|
||||
end
|
||||
|
||||
-- Function to eliminate "Press ENTER" prompts completely
|
||||
function M.eliminate_enter_prompts()
|
||||
-- Override the message display to prevent "Press ENTER" prompts
|
||||
local original_echo = vim.cmd.echo
|
||||
vim.cmd.echo = function(msg)
|
||||
local msg_str = tostring(msg)
|
||||
-- Block any messages that might cause "Press ENTER" prompts
|
||||
if msg_str:match("Press ENTER") or
|
||||
msg_str:match("lazyredraw") or
|
||||
msg_str:match("You have enabled") or
|
||||
msg_str:match("This is only meant") or
|
||||
msg_str:match("You'll experience issues") then
|
||||
return -- Don't show these messages
|
||||
end
|
||||
-- Allow other messages
|
||||
original_echo(msg)
|
||||
end
|
||||
|
||||
-- Create autocmd to handle any remaining prompts
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
-- Clear any startup messages immediately
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
|
||||
-- Force clear any pending messages multiple times
|
||||
for i = 1, 5 do
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
end, i * 50)
|
||||
end
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Create autocmd to handle message events - use valid events
|
||||
vim.api.nvim_create_autocmd("BufReadPost", {
|
||||
callback = function()
|
||||
-- Clear messages that might cause prompts
|
||||
vim.cmd("redraw!")
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to setup notification system
|
||||
function M.setup()
|
||||
-- Create autocmd to handle startup messages
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
M.handle_startup_messages()
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Create autocmd to handle alpha dashboard
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "alpha",
|
||||
callback = function()
|
||||
M.handle_startup_messages()
|
||||
end,
|
||||
})
|
||||
|
||||
-- Eliminate "Press ENTER" prompts
|
||||
M.eliminate_enter_prompts()
|
||||
|
||||
-- Don't override vim.notify here to avoid circular dependency
|
||||
-- Let the system handle notifications naturally
|
||||
|
||||
print("Notification manager initialized")
|
||||
end
|
||||
|
||||
-- Initialize notification manager
|
||||
M.setup()
|
||||
|
||||
return M
|
||||
334
lua/cargdev/core/function/performance_monitor.lua
Normal file
334
lua/cargdev/core/function/performance_monitor.lua
Normal file
@@ -0,0 +1,334 @@
|
||||
-- Performance monitoring and diagnostics
|
||||
local M = {}
|
||||
|
||||
-- Function to check Neovim performance
|
||||
function M.check_performance()
|
||||
local start_time = vim.loop.hrtime()
|
||||
|
||||
-- Check startup time
|
||||
local startup_time = vim.g.startup_time or 0
|
||||
|
||||
-- Check memory usage safely
|
||||
local memory_mb = 0
|
||||
local memory_info_available = pcall(function()
|
||||
local info = vim.loop.get_memory_info()
|
||||
if info and info.used then
|
||||
memory_mb = math.floor(info.used / 1024 / 1024)
|
||||
end
|
||||
end)
|
||||
|
||||
if not memory_info_available then
|
||||
memory_mb = "N/A (not available on this platform)"
|
||||
end
|
||||
|
||||
-- Check buffer count
|
||||
local buffer_count = #vim.api.nvim_list_bufs()
|
||||
|
||||
-- Check window count
|
||||
local window_count = #vim.api.nvim_list_wins()
|
||||
|
||||
-- Check tab count
|
||||
local tab_count = #vim.api.nvim_list_tabpages()
|
||||
|
||||
-- Check if any LSP servers are running
|
||||
local active_clients = vim.lsp.get_active_clients()
|
||||
local lsp_count = #active_clients
|
||||
|
||||
-- Check if treesitter is active
|
||||
local ts_available, ts = pcall(require, "nvim-treesitter")
|
||||
local ts_active = ts_available and ts.status() and "Active" or "Inactive"
|
||||
|
||||
-- Check LSP errors and warnings
|
||||
local diagnostics = vim.diagnostic.get()
|
||||
local error_count = 0
|
||||
local warning_count = 0
|
||||
|
||||
for _, diag in ipairs(diagnostics) do
|
||||
if diag.severity == vim.diagnostic.severity.ERROR then
|
||||
error_count = error_count + 1
|
||||
elseif diag.severity == vim.diagnostic.severity.WARN then
|
||||
warning_count = warning_count + 1
|
||||
end
|
||||
end
|
||||
|
||||
-- Check current buffer file type and potential issues
|
||||
local current_buf = vim.api.nvim_get_current_buf()
|
||||
local current_filename = vim.api.nvim_buf_get_name(current_buf)
|
||||
local current_filetype = vim.api.nvim_buf_get_option(current_buf, "filetype")
|
||||
local current_line_count = vim.api.nvim_buf_line_count(current_buf)
|
||||
|
||||
-- Check if current file might cause LSP issues
|
||||
local problematic_extensions = {
|
||||
"png", "jpg", "jpeg", "gif", "svg", "ico", "bmp", "webp",
|
||||
"mp4", "avi", "mov", "wmv", "flv", "webm", "mkv",
|
||||
"mp3", "wav", "flac", "aac", "ogg",
|
||||
"pdf", "doc", "docx", "xls", "xlsx", "ppt", "pptx",
|
||||
"zip", "rar", "7z", "tar", "gz", "bz2",
|
||||
"exe", "dll", "so", "dylib", "bin"
|
||||
}
|
||||
|
||||
local is_problematic_file = false
|
||||
local file_extension = ""
|
||||
|
||||
for _, ext in ipairs(problematic_extensions) do
|
||||
if current_filename:match("%." .. ext .. "$") then
|
||||
is_problematic_file = true
|
||||
file_extension = ext
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
-- Performance recommendations
|
||||
local recommendations = {}
|
||||
|
||||
if type(memory_mb) == "number" and memory_mb > 500 then
|
||||
table.insert(recommendations, "High memory usage: " .. memory_mb .. "MB - Consider disabling heavy plugins")
|
||||
end
|
||||
|
||||
if buffer_count > 20 then
|
||||
table.insert(recommendations, "Many buffers open: " .. buffer_count .. " - Close unused buffers")
|
||||
end
|
||||
|
||||
if lsp_count > 5 then
|
||||
table.insert(recommendations, "Many LSP servers: " .. lsp_count .. " - Consider disabling unused language servers")
|
||||
end
|
||||
|
||||
if startup_time > 1000 then
|
||||
table.insert(recommendations, "Slow startup: " .. startup_time .. "ms - Check plugin loading order")
|
||||
end
|
||||
|
||||
if error_count > 10 then
|
||||
table.insert(recommendations, "Many LSP errors: " .. error_count .. " - Check file syntax and LSP configuration")
|
||||
end
|
||||
|
||||
if is_problematic_file then
|
||||
table.insert(recommendations, "Current file type (" .. file_extension .. ") may cause LSP issues - Use safe file search")
|
||||
end
|
||||
|
||||
if current_line_count > 10000 then
|
||||
table.insert(recommendations, "Large file (" .. current_line_count .. " lines) - Consider disabling heavy features")
|
||||
end
|
||||
|
||||
-- Display results
|
||||
local output = string.format([[
|
||||
Performance Report:
|
||||
==================
|
||||
Startup Time: %dms
|
||||
Memory Usage: %s
|
||||
Active Buffers: %d
|
||||
Active Windows: %d
|
||||
Active Tabs: %d
|
||||
LSP Servers: %d
|
||||
Treesitter: %s
|
||||
LSP Errors: %d
|
||||
LSP Warnings: %d
|
||||
|
||||
Current File Analysis:
|
||||
=====================
|
||||
Filename: %s
|
||||
Filetype: %s
|
||||
Line Count: %d
|
||||
Potential Issues: %s
|
||||
|
||||
Performance Recommendations:
|
||||
]], startup_time, tostring(memory_mb), buffer_count, window_count, tab_count, lsp_count, ts_active, error_count, warning_count,
|
||||
current_filename, current_filetype, current_line_count, is_problematic_file and "Yes (" .. file_extension .. ")" or "No")
|
||||
|
||||
if #recommendations > 0 then
|
||||
for _, rec in ipairs(recommendations) do
|
||||
output = output .. "- " .. rec .. "\n"
|
||||
end
|
||||
else
|
||||
output = output .. "- No immediate performance issues detected\n"
|
||||
end
|
||||
|
||||
-- Add LSP-specific recommendations
|
||||
if lsp_count > 0 then
|
||||
output = output .. "\nLSP Status:\n"
|
||||
for _, client in ipairs(active_clients) do
|
||||
local status = "Unknown"
|
||||
if client.is_stopped then
|
||||
status = "Stopped"
|
||||
elseif client.workspace_folders then
|
||||
status = "Active"
|
||||
end
|
||||
output = output .. "- " .. client.name .. ": " .. status .. "\n"
|
||||
end
|
||||
end
|
||||
|
||||
-- Create a new buffer to display the report
|
||||
local buf = vim.api.nvim_create_buf(false, true)
|
||||
local win = vim.api.nvim_open_win(buf, true, {
|
||||
relative = "editor",
|
||||
width = 80,
|
||||
height = 25,
|
||||
row = 2,
|
||||
col = 2,
|
||||
style = "minimal",
|
||||
border = "rounded",
|
||||
})
|
||||
|
||||
vim.api.nvim_buf_set_lines(buf, 0, -1, false, vim.split(output, "\n"))
|
||||
vim.api.nvim_buf_set_option(buf, "modifiable", false)
|
||||
vim.api.nvim_buf_set_option(buf, "filetype", "markdown")
|
||||
|
||||
-- Add keymaps to close the window
|
||||
local opts = { buffer = buf, noremap = true, silent = true }
|
||||
vim.keymap.set("n", "q", "<cmd>close<CR>", opts)
|
||||
vim.keymap.set("n", "<ESC>", "<cmd>close<CR>", opts)
|
||||
|
||||
-- Auto-close after 15 seconds
|
||||
vim.defer_fn(function()
|
||||
if vim.api.nvim_win_is_valid(win) then
|
||||
vim.api.nvim_win_close(win, true)
|
||||
end
|
||||
end, 15000)
|
||||
|
||||
local end_time = vim.loop.hrtime()
|
||||
local function_time = (end_time - start_time) / 1000000
|
||||
print("Performance check completed in " .. string.format("%.2f", function_time) .. "ms")
|
||||
end
|
||||
|
||||
-- Function to profile a specific operation
|
||||
function M.profile_operation(operation_name, operation_func)
|
||||
local start_time = vim.loop.hrtime()
|
||||
|
||||
-- Run the operation
|
||||
local success, result = pcall(operation_func)
|
||||
|
||||
local end_time = vim.loop.hrtime()
|
||||
local duration = (end_time - start_time) / 1000000
|
||||
|
||||
if success then
|
||||
print(string.format("Operation '%s' completed in %.2fms", operation_name, duration))
|
||||
return result
|
||||
else
|
||||
print(string.format("Operation '%s' failed after %.2fms: %s", operation_name, duration, result))
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
-- Function to check if specific plugins are causing issues
|
||||
function M.check_plugin_performance()
|
||||
local plugins_to_check = {
|
||||
"nvim-treesitter",
|
||||
"nvim-lspconfig",
|
||||
"nvim-cmp",
|
||||
"telescope.nvim",
|
||||
"which-key.nvim",
|
||||
}
|
||||
|
||||
local results = {}
|
||||
|
||||
for _, plugin_name in ipairs(plugins_to_check) do
|
||||
local start_time = vim.loop.hrtime()
|
||||
local success, plugin = pcall(require, plugin_name)
|
||||
local end_time = vim.loop.hrtime()
|
||||
local load_time = (end_time - start_time) / 1000000
|
||||
|
||||
table.insert(results, {
|
||||
name = plugin_name,
|
||||
loaded = success,
|
||||
load_time = load_time,
|
||||
status = success and "OK" or "Failed"
|
||||
})
|
||||
end
|
||||
|
||||
-- Display results
|
||||
local output = "Plugin Performance Check:\n=======================\n"
|
||||
for _, result in ipairs(results) do
|
||||
output = output .. string.format("%s: %s (%.2fms)\n",
|
||||
result.name, result.status, result.load_time)
|
||||
end
|
||||
|
||||
print(output)
|
||||
return results
|
||||
end
|
||||
|
||||
-- Function to optimize current buffer
|
||||
function M.optimize_buffer()
|
||||
local buf = vim.api.nvim_get_current_buf()
|
||||
local filetype = vim.api.nvim_buf_get_option(buf, "filetype")
|
||||
|
||||
-- Disable heavy features for large files
|
||||
local line_count = vim.api.nvim_buf_line_count(buf)
|
||||
|
||||
if line_count > 10000 then
|
||||
-- Disable treesitter for very large files
|
||||
vim.api.nvim_buf_set_option(buf, "syntax", "off")
|
||||
print("Large file detected (" .. line_count .. " lines). Disabled syntax highlighting for performance.")
|
||||
end
|
||||
|
||||
-- Optimize buffer-specific settings
|
||||
vim.api.nvim_buf_set_option(buf, "foldmethod", "manual")
|
||||
vim.api.nvim_buf_set_option(buf, "foldlevel", 99)
|
||||
|
||||
print("Buffer optimized for performance")
|
||||
end
|
||||
|
||||
-- Function to check LSP health and fix common issues
|
||||
function M.check_lsp_health()
|
||||
local active_clients = vim.lsp.get_active_clients()
|
||||
local output = "LSP Health Check:\n================\n"
|
||||
|
||||
if #active_clients == 0 then
|
||||
output = output .. "No LSP clients active\n"
|
||||
else
|
||||
for _, client in ipairs(active_clients) do
|
||||
local status = "Unknown"
|
||||
if client.is_stopped then
|
||||
status = "Stopped"
|
||||
elseif client.workspace_folders then
|
||||
status = "Active"
|
||||
end
|
||||
|
||||
output = output .. string.format("- %s: %s\n", client.name, status)
|
||||
|
||||
-- Check for common LSP issues
|
||||
if client.config and client.config.flags then
|
||||
if not client.config.flags.debounce_text_changes then
|
||||
output = output .. " ⚠️ No text change debouncing\n"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Check current buffer LSP status
|
||||
local current_buf = vim.api.nvim_get_current_buf()
|
||||
local attached_clients = vim.lsp.get_clients({ bufnr = current_buf })
|
||||
|
||||
if #attached_clients > 0 then
|
||||
output = output .. "\nCurrent Buffer LSP:\n"
|
||||
for _, client in ipairs(attached_clients) do
|
||||
output = output .. string.format("- %s attached\n", client.name)
|
||||
end
|
||||
else
|
||||
output = output .. "\nNo LSP attached to current buffer\n"
|
||||
end
|
||||
|
||||
print(output)
|
||||
return active_clients
|
||||
end
|
||||
|
||||
-- Function to safely restart LSP for current buffer
|
||||
function M.restart_lsp()
|
||||
local current_buf = vim.api.nvim_get_current_buf()
|
||||
local attached_clients = vim.lsp.get_clients({ bufnr = current_buf })
|
||||
|
||||
if #attached_clients > 0 then
|
||||
for _, client in ipairs(attached_clients) do
|
||||
client.stop()
|
||||
print("Stopped LSP client: " .. client.name)
|
||||
end
|
||||
|
||||
-- Restart LSP after a short delay
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("LspStart")
|
||||
print("LSP restarted for current buffer")
|
||||
end, 100)
|
||||
else
|
||||
print("No LSP clients attached to current buffer")
|
||||
end
|
||||
end
|
||||
|
||||
return M
|
||||
@@ -1,21 +1,47 @@
|
||||
-- Load compatibility layer first
|
||||
require("cargdev.core.compatibility").setup()
|
||||
|
||||
-- Load startup optimizations early
|
||||
require("cargdev.core.startup_optimization")
|
||||
|
||||
require("cargdev.core.options")
|
||||
require("cargdev.core.keymaps")
|
||||
|
||||
-- Load all Lua files inside `cargdev/core/function/`
|
||||
-- Load all Lua files inside `cargdev/core/function/` AFTER plugins are loaded
|
||||
local function load_functions()
|
||||
local function_path = vim.fn.stdpath("config") .. "/lua/cargdev/core/function"
|
||||
local scan = vim.fn.globpath(function_path, "*.lua", false, true)
|
||||
|
||||
for _, file in ipairs(scan) do
|
||||
local module_name = "cargdev.core.function." .. file:match("([^/]+)%.lua$")
|
||||
local success, err = pcall(require, module_name)
|
||||
-- Skip notification manager as it's loaded separately
|
||||
if module_name ~= "cargdev.core.function.notification_manager" then
|
||||
local success, err = pcall(require, module_name)
|
||||
|
||||
if not success then
|
||||
vim.notify("Error loading function module: " .. module_name .. "\n" .. err, vim.log.levels.ERROR)
|
||||
if not success then
|
||||
vim.notify("Error loading function module: " .. module_name .. "\n" .. err, vim.log.levels.ERROR)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Defer function loading until after plugins are loaded
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "LazyDone",
|
||||
callback = function()
|
||||
-- Load notification manager after plugins with error handling
|
||||
local success, err = pcall(require, "cargdev.core.function.notification_manager")
|
||||
if not success then
|
||||
-- Use safe echo instead of vim.notify to avoid circular dependency
|
||||
local safe_msg = tostring(err):gsub("'", "\\'")
|
||||
vim.api.nvim_echo({{"Warning: Notification manager failed to load: " .. safe_msg, "WarningMsg"}}, false, {})
|
||||
end
|
||||
|
||||
-- Load all other functions
|
||||
load_functions()
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
--[[ vim.api.nvim_create_autocmd("BufReadPost", {
|
||||
once = true,
|
||||
@@ -24,4 +50,3 @@ end
|
||||
end
|
||||
})
|
||||
]]
|
||||
load_functions()
|
||||
|
||||
@@ -1,104 +1,24 @@
|
||||
vim.g.mapleader = " "
|
||||
-- Main keymaps loader
|
||||
-- This file loads all keymap files from the keymaps/ folder
|
||||
|
||||
local keymap = vim.keymap
|
||||
-- =============================================================================
|
||||
-- KEYMAPS LOADER
|
||||
-- =============================================================================
|
||||
|
||||
keymap.set("n", "<leader>u", "gg0vG$", { desc = "Select the whole file open" })
|
||||
keymap.set("n", "<leader>4", "0v$hy<Esc>0o<Esc>0p0kw<CR>", { desc = "Copy the entire line and paste just below" })
|
||||
-- Load all keymap files from the keymaps folder
|
||||
local function load_keymaps()
|
||||
local keymaps_path = vim.fn.stdpath("config") .. "/lua/cargdev/core/keymaps"
|
||||
local scan = vim.fn.globpath(keymaps_path, "*.lua", false, true)
|
||||
|
||||
-- file management
|
||||
keymap.set("n", "<leader>w", ":w<CR>", { desc = "Save the current file" })
|
||||
keymap.set("n", "<leader>xa", ":xa<CR>", { desc = "Save and close all the files" })
|
||||
keymap.set("n", "<leader>q", ":q<CR>", { desc = "Close all the files" })
|
||||
keymap.set("n", "<leader>so", ":source %<CR>", { desc = "Reload nvim" })
|
||||
keymap.set("n", "<leader>no", ":noh <CR>", { desc = "Reset search a word" })
|
||||
for _, file in ipairs(scan) do
|
||||
local module_name = "cargdev.core.keymaps." .. file:match("([^/]+)%.lua$")
|
||||
local success, err = pcall(require, module_name)
|
||||
|
||||
-- increment/decrement numbers
|
||||
keymap.set("n", "<leader>+", "<C-a>", { desc = "Increment number" }) -- increment
|
||||
keymap.set("n", "<leader>-", "<C-x>", { desc = "Decrement number" }) -- decrement
|
||||
if not success then
|
||||
vim.notify("Error loading keymap module: " .. module_name .. "\n" .. err, vim.log.levels.ERROR)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- window management
|
||||
keymap.set("n", "<leader>sv", "<C-w>v", { desc = "Split window vertically" }) -- split window vertically
|
||||
keymap.set("n", "<leader>sh", "<C-w>s", { desc = "Split window horizontally" }) -- split window horizontally
|
||||
keymap.set("n", "<leader>se", "<C-w>=", { desc = "Make splits equal size" }) -- make split windows equal width & height
|
||||
keymap.set("n", "<leader>sx", "<cmd>close<CR>", { desc = "Close current split" }) -- close current split window
|
||||
|
||||
keymap.set("n", "<leader>to", "<cmd>tabnew<CR>", { desc = "Open new tab" }) -- open new tab
|
||||
keymap.set("n", "<leader>tx", "<cmd>tabclose<CR>", { desc = "Close current tab" }) -- close current tab
|
||||
keymap.set("n", "<leader>tn", "<cmd>tabn<CR>", { desc = "Go to next tab" }) -- go to next tab
|
||||
keymap.set("n", "<leader>tp", "<cmd>tabp<CR>", { desc = "Go to previous tab" }) -- go to previous tab
|
||||
keymap.set("n", "<leader>tf", "<cmd>tabnew %<CR>", { desc = "Open current buffer in new tab" }) -- move current buffer to new tab
|
||||
|
||||
-- sintax fixer
|
||||
keymap.set("n", "<leader>sy", "gg=G<CR>", { desc = "Format current file" })
|
||||
|
||||
keymap.set("n", "<C-e>", "10<C-e>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-y>", "10<C-y>", { noremap = true, silent = true })
|
||||
|
||||
-- close current file on buffer
|
||||
keymap.set("n", "<leader>bd", ":bd<CR>", { desc = "Close current file on buffer" })
|
||||
|
||||
-- Set buftabline mappings
|
||||
keymap.set("n", "<C-p>", ":bnext<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-n>", ":bprev<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Coding hacks
|
||||
keymap.set(
|
||||
"n",
|
||||
"<leader>re",
|
||||
"ggOimport<space>React<space>from<space>'react';<esc>0",
|
||||
{ desc = "Type import react from 'react' at the top of the file" }
|
||||
)
|
||||
keymap.set("n", "<leader>,", "$a,<ESC>", { desc = "Adding ',' at the end of the line" })
|
||||
keymap.set("n", "<leader>;", "$a;<ESC>", { desc = "Adding ';' at the end of the line" })
|
||||
keymap.set("n", "<leader>con", "oconsole.log()<ESC>0w$h", { desc = "Adding console.log() on the line below" })
|
||||
keymap.set("n", "<leader>x", ":!node %<CR>", { desc = "Running current project using node" })
|
||||
|
||||
-- Move between Tmux and Neovim splits using Alt + Arrow keys
|
||||
-- keymap.set("n", "<A-h>", ":TmuxNavigateLeft<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-j>", ":TmuxNavigateDown<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-k>", ":TmuxNavigateUp<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-l>", ":TmuxNavigateRight<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Resize splits using Ctrl + Arrow keys
|
||||
|
||||
keymap.set("n", "<C-l>", ":vertical resize -5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-h>", ":vertical resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-k>", ":resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-j>", ":resize -5<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Run and Debug Project
|
||||
keymap.set("n", "<leader>pr", ":RunProject<CR>", { desc = "Run Project" })
|
||||
keymap.set("n", "<leader>pd", ":DebugProject<CR>", { desc = "Debug Project" })
|
||||
|
||||
keymap.set("v", "<leader>zn", ":CopilotChatRename<CR>", { desc = "Rename variable (Copilot Chat)" })
|
||||
keymap.set("n", "<leader>zc", ":CopilotChat<CR>", { desc = "Open Copilot Chat" })
|
||||
keymap.set("v", "<leader>ze", ":CopilotChatExplain<CR>", { desc = "Explain code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zr", ":CopilotChatReview<CR>", { desc = "Review code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zf", ":CopilotChatFix<CR>", { desc = "Fix code issues (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zo", ":CopilotChatOptimize<CR>", { desc = "Optimize code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zd", ":CopilotChatDocs<CR>", { desc = "Generate docs (Copilot Chat)" })
|
||||
|
||||
-- Git Conflict Mappings
|
||||
keymap.set("n", "]x", "<Plug>(git-conflict-next-conflict)", { desc = "Go to next git conflict" })
|
||||
keymap.set("n", "[x", "<Plug>(git-conflict-prev-conflict)", { desc = "Go to previous git conflict" })
|
||||
keymap.set("n", "<leader>co", "<Plug>(git-conflict-ours)", { desc = "Choose ours (git conflict)" })
|
||||
keymap.set("n", "<leader>ct", "<Plug>(git-conflict-theirs)", { desc = "Choose theirs (git conflict)" })
|
||||
keymap.set("n", "<leader>cb", "<Plug>(git-conflict-both)", { desc = "Choose both (git conflict)" })
|
||||
keymap.set("n", "<leader>c0", "<Plug>(git-conflict-none)", { desc = "Choose none (git conflict)" })
|
||||
keymap.set("n", "<leader>cq", "<Plug>(git-conflict-list)", { desc = "List all git conflicts" })
|
||||
|
||||
-- LeetCode Mappings
|
||||
keymap.set("n", "<leader>lr", "<cmd>Leet run<CR>", { desc = "LeetCode: Run Code" })
|
||||
keymap.set("n", "<leader>ls", "<cmd>Leet submit<CR>", { desc = "LeetCode: Submit Code" })
|
||||
keymap.set("n", "<leader>ld", "<cmd>Leet daily<CR>", { desc = "LeetCode: Daily Challenge" })
|
||||
keymap.set("n", "<leader>ll", "<cmd>Leet list<CR>", { desc = "LeetCode: List Problems" })
|
||||
keymap.set("n", "<leader>lc", "<cmd>Leet console<CR>", { desc = "LeetCode: Open Console" })
|
||||
keymap.set("n", "<leader>lu", "<cmd>Leet cookie update<CR>", { desc = "LeetCode: Update Cookie" })
|
||||
keymap.set("n", "<leader>lls", "<cmd>Leet last_submit<CR>", { desc = "LeetCode: Get latest submition" })
|
||||
|
||||
-- Copilot
|
||||
-- Add key map on normal mode to open copilot panel on c + tab
|
||||
keymap.set("n", "<leader>cp", ":Copilot panel<CR>", { desc = "Copilot: Open copilot panel" })
|
||||
|
||||
-- Add key map on normal mode to open copilot chat explain on c + shift + e
|
||||
keymap.set("n", "<leader>ce", ":CopilotChatExplain<CR>", { desc = "Copilot Chat: Explain code" })
|
||||
-- Load all keymaps
|
||||
load_keymaps()
|
||||
|
||||
98
lua/cargdev/core/keymaps/README.md
Normal file
98
lua/cargdev/core/keymaps/README.md
Normal file
@@ -0,0 +1,98 @@
|
||||
# Keymaps Structure
|
||||
|
||||
This folder contains all the keymaps organized by category for better maintainability.
|
||||
|
||||
## 📁 File Structure
|
||||
|
||||
```
|
||||
keymaps/
|
||||
├── README.md # This file
|
||||
├── general.lua # General keymaps (leader, basic navigation)
|
||||
├── personal.lua # Personal workflow keymaps
|
||||
├── lsp.lua # LSP and function navigation keymaps
|
||||
├── snacks.lua # Snacks search and navigation keymaps (replacing Telescope)
|
||||
└── plugins.lua # Plugin-specific keymaps
|
||||
```
|
||||
|
||||
## 🔧 How It Works
|
||||
|
||||
The main `keymaps.lua` file automatically loads all `.lua` files from this folder. Each file contains keymaps for a specific category:
|
||||
|
||||
### **general.lua**
|
||||
- Leader key setup
|
||||
- Basic navigation
|
||||
- General utility keymaps
|
||||
|
||||
### **personal.lua**
|
||||
- Your personal workflow keymaps
|
||||
- File management
|
||||
- Window management
|
||||
- Coding shortcuts
|
||||
- Copilot integration
|
||||
|
||||
### **lsp.lua**
|
||||
- Function navigation (`gd`, `gi`, `gr`, `gt`)
|
||||
- Symbol search (`<leader>ds`, `<leader>ws`)
|
||||
- Code actions and documentation
|
||||
- Diagnostics
|
||||
|
||||
### **snacks.lua**
|
||||
- File search (`<leader>ff`, `<leader>fs`)
|
||||
- Buffer management
|
||||
- Git integration
|
||||
- Help and commands
|
||||
|
||||
### **plugins.lua**
|
||||
- NvimTree
|
||||
- Comment
|
||||
- DAP (debugging)
|
||||
- Trouble
|
||||
- Terminal
|
||||
- Session management
|
||||
- Git conflicts
|
||||
- LeetCode
|
||||
- And more...
|
||||
|
||||
## ➕ Adding New Keymaps
|
||||
|
||||
To add new keymaps:
|
||||
|
||||
1. **Choose the appropriate file** based on the category
|
||||
2. **Add your keymaps** using the standard format:
|
||||
```lua
|
||||
keymap.set("n", "<leader>key", "<cmd>command<cr>", { desc = "Description" })
|
||||
```
|
||||
3. **The keymaps will be automatically loaded** when Neovim starts
|
||||
|
||||
## 🎯 Keymap Categories
|
||||
|
||||
| Category | File | Description |
|
||||
|----------|------|-------------|
|
||||
| General | `general.lua` | Basic setup and utilities |
|
||||
| Personal | `personal.lua` | Your workflow shortcuts |
|
||||
| LSP | `lsp.lua` | Function navigation and LSP features |
|
||||
| Search | `snacks.lua` | File and text search |
|
||||
| Plugins | `plugins.lua` | Plugin-specific functionality |
|
||||
|
||||
## 🔄 Benefits
|
||||
|
||||
- **Modular**: Each category is in its own file
|
||||
- **Maintainable**: Easy to find and modify specific keymaps
|
||||
- **Scalable**: Easy to add new categories
|
||||
- **Organized**: Clear separation of concerns
|
||||
- **Auto-loading**: No need to manually import files
|
||||
|
||||
## 🚀 Usage
|
||||
|
||||
The keymaps are automatically loaded when Neovim starts. You can:
|
||||
|
||||
- **View all keymaps**: `<leader>fk` (Snacks keymaps)
|
||||
- **Search keymaps**: Use Snacks to search through your keymaps
|
||||
- **Modify keymaps**: Edit the appropriate file and restart Neovim
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
- All files are automatically loaded by `keymaps.lua`
|
||||
- Each file should have its own `local keymap = vim.keymap` declaration
|
||||
- Use descriptive comments to organize keymaps within each file
|
||||
- Follow the existing naming conventions for consistency
|
||||
13
lua/cargdev/core/keymaps/copilot.lua
Normal file
13
lua/cargdev/core/keymaps/copilot.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
-- Copilot Chat keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("v", "<leader>zn", ":CopilotChatRename<CR>", { desc = "Rename variable (Copilot Chat)" })
|
||||
keymap.set("n", "<leader>zc", ":CopilotChat<CR>", { desc = "Open Copilot Chat" })
|
||||
keymap.set("v", "<leader>ze", ":CopilotChatExplain<CR>", { desc = "Explain code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zr", ":CopilotChatReview<CR>", { desc = "Review code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zf", ":CopilotChatFix<CR>", { desc = "Fix code issues (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zo", ":CopilotChatOptimize<CR>", { desc = "Optimize code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zd", ":CopilotChatDocs<CR>", { desc = "Generate docs (Copilot Chat)" })
|
||||
keymap.set("n", "<leader>cp", ":Copilot panel<CR>", { desc = "Copilot: Open copilot panel" })
|
||||
keymap.set("n", "<leader>cd", ":Copilot disable<CR>", { desc = "Copilot: Disabled" })
|
||||
keymap.set("n", "<leader>cs", ":Copilot status<CR>", { desc = "Copilot: Status" })
|
||||
35
lua/cargdev/core/keymaps/dap.lua
Normal file
35
lua/cargdev/core/keymaps/dap.lua
Normal file
@@ -0,0 +1,35 @@
|
||||
-- DAP (Debug Adapter Protocol) keymaps
|
||||
|
||||
local ok_dap, dap = pcall(require, "dap")
|
||||
local ok_dapui, dapui = pcall(require, "dapui")
|
||||
local fn = vim.fn
|
||||
local keymap = vim.keymap.set
|
||||
|
||||
if ok_dap and ok_dapui then
|
||||
keymap("n", "<leader>dc", dap.continue, { desc = "▶ Start Debugging" })
|
||||
keymap("n", "<leader>do", dap.step_over, { desc = "⏭ Step Over" })
|
||||
keymap("n", "<leader>di", dap.step_into, { desc = "⤵ Step Into" })
|
||||
keymap("n", "<leader>dot", dap.step_out, { desc = "⤴ Step Out" })
|
||||
keymap("n", "<leader>db", dap.toggle_breakpoint, { desc = "🔴 Toggle Breakpoint" })
|
||||
keymap("n", "<leader>dB", function()
|
||||
dap.set_breakpoint(fn.input("Breakpoint condition: "))
|
||||
end, { desc = "⚠ Conditional Breakpoint" })
|
||||
keymap("n", "<leader>dr", dap.repl.open, { desc = "💬 Open REPL" })
|
||||
keymap("n", "<leader>dl", dap.run_last, { desc = "🔁 Run Last Debug" })
|
||||
keymap("n", "<leader>du", dapui.toggle, { desc = "🧩 Toggle DAP UI" })
|
||||
keymap("n", "<leader>dq", dap.terminate, { desc = "⛔ Stop Debugging" })
|
||||
|
||||
-- 🧼 Reset UI
|
||||
keymap("n", "<leader>drt", function()
|
||||
dap.terminate()
|
||||
dapui.close()
|
||||
vim.defer_fn(function()
|
||||
dapui.open()
|
||||
end, 200)
|
||||
end, { desc = "🧼 Reset DAP UI Layout" })
|
||||
|
||||
-- 🔭 Snacks Integration (replacing Telescope)
|
||||
keymap("n", "<leader>dcf", "<cmd>lua require('snacks.picker').dap_configurations()<cr>", { desc = "🔭 DAP Configs" })
|
||||
keymap("n", "<leader>dcb", "<cmd>lua require('snacks.picker').dap_list_breakpoints()<cr>", { desc = "🧷 List Breakpoints" })
|
||||
keymap("n", "<leader>dco", "<cmd>lua require('snacks.picker').dap_commands()<cr>", { desc = "⚙️ DAP Commands" })
|
||||
end
|
||||
115
lua/cargdev/core/keymaps/database.lua
Normal file
115
lua/cargdev/core/keymaps/database.lua
Normal file
@@ -0,0 +1,115 @@
|
||||
-- =============================================================================
|
||||
-- DATABASE KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
local keymap = vim.keymap
|
||||
local opts = { noremap = true, silent = true }
|
||||
|
||||
-- =============================================================================
|
||||
-- GLOBAL DATABASE KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
-- Open database interface
|
||||
keymap.set("n", "<leader>db", function()
|
||||
require("dbee").open()
|
||||
end, { desc = "Open Database Interface" })
|
||||
|
||||
-- Close database interface
|
||||
keymap.set("n", "<leader>dc", function()
|
||||
require("dbee").close()
|
||||
end, { desc = "Close Database Interface" })
|
||||
|
||||
-- Execute current query (when in database editor)
|
||||
keymap.set("n", "<leader>dq", function()
|
||||
require("dbee").api.ui.execute_query()
|
||||
end, { desc = "Execute Query" })
|
||||
|
||||
-- Store results to file
|
||||
keymap.set("n", "<leader>ds", function()
|
||||
require("dbee").store("csv", "file", { extra_arg = "~/query_results.csv" })
|
||||
end, { desc = "Store Results to File" })
|
||||
|
||||
-- Yank results to clipboard
|
||||
keymap.set("n", "<leader>dy", function()
|
||||
require("dbee").store("json", "yank", {})
|
||||
end, { desc = "Yank Results to Clipboard" })
|
||||
|
||||
-- =============================================================================
|
||||
-- NVIM-DBEE INTERNAL KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
-- Set up nvim-dbee internal keymaps
|
||||
local function setup_dbee_keymaps()
|
||||
-- Drawer mappings (left panel)
|
||||
keymap.set("n", "<CR>", function()
|
||||
require("dbee").api.ui.open_connection()
|
||||
end, { buffer = true, desc = "Open Connection" })
|
||||
|
||||
keymap.set("n", "a", function()
|
||||
require("dbee").api.ui.add_connection()
|
||||
end, { buffer = true, desc = "Add Connection" })
|
||||
|
||||
keymap.set("n", "e", function()
|
||||
require("dbee").api.ui.edit_connection()
|
||||
end, { buffer = true, desc = "Edit Connection" })
|
||||
|
||||
keymap.set("n", "d", function()
|
||||
require("dbee").api.ui.delete_connection()
|
||||
end, { buffer = true, desc = "Delete Connection" })
|
||||
|
||||
keymap.set("n", "r", function()
|
||||
require("dbee").api.ui.refresh_connections()
|
||||
end, { buffer = true, desc = "Refresh Connections" })
|
||||
|
||||
-- Editor mappings (query editor)
|
||||
keymap.set("n", "BB", function()
|
||||
require("dbee").api.ui.execute_query()
|
||||
end, { buffer = true, desc = "Execute Query" })
|
||||
|
||||
keymap.set("n", "cc", function()
|
||||
require("dbee").api.ui.clear_results()
|
||||
end, { buffer = true, desc = "Clear Results" })
|
||||
|
||||
keymap.set("n", "ss", function()
|
||||
require("dbee").api.ui.save_scratchpad()
|
||||
end, { buffer = true, desc = "Save Scratchpad" })
|
||||
|
||||
-- Result mappings (results buffer)
|
||||
keymap.set("n", "L", function()
|
||||
require("dbee").api.ui.result_page_next()
|
||||
end, { buffer = true, desc = "Next Page" })
|
||||
|
||||
keymap.set("n", "H", function()
|
||||
require("dbee").api.ui.result_page_prev()
|
||||
end, { buffer = true, desc = "Previous Page" })
|
||||
|
||||
keymap.set("n", "F", function()
|
||||
require("dbee").api.ui.result_page_first()
|
||||
end, { buffer = true, desc = "First Page" })
|
||||
|
||||
keymap.set("n", "E", function()
|
||||
require("dbee").api.ui.result_page_last()
|
||||
end, { buffer = true, desc = "Last Page" })
|
||||
|
||||
keymap.set("n", "yaj", function()
|
||||
require("dbee").api.ui.yank_row_json()
|
||||
end, { buffer = true, desc = "Yank Row as JSON" })
|
||||
|
||||
keymap.set("n", "yac", function()
|
||||
require("dbee").api.ui.yank_row_csv()
|
||||
end, { buffer = true, desc = "Yank Row as CSV" })
|
||||
|
||||
keymap.set("n", "yaJ", function()
|
||||
require("dbee").api.ui.yank_all_json()
|
||||
end, { buffer = true, desc = "Yank All as JSON" })
|
||||
|
||||
keymap.set("n", "yaC", function()
|
||||
require("dbee").api.ui.yank_all_csv()
|
||||
end, { buffer = true, desc = "Yank All as CSV" })
|
||||
end
|
||||
|
||||
-- Apply dbee keymaps when dbee buffers are created
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "dbee-drawer", "dbee-editor", "dbee-result" },
|
||||
callback = setup_dbee_keymaps,
|
||||
})
|
||||
43
lua/cargdev/core/keymaps/general.lua
Normal file
43
lua/cargdev/core/keymaps/general.lua
Normal file
@@ -0,0 +1,43 @@
|
||||
-- General keymaps
|
||||
local keymap = vim.keymap
|
||||
local opts = { noremap = true, silent = true }
|
||||
|
||||
-- =============================================================================
|
||||
-- GENERAL KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
-- Set leader key
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
-- General keymaps
|
||||
keymap.set("i", "jk", "<ESC>", opts) -- Exit insert mode with jk
|
||||
keymap.set("n", "<leader>nh", ":nohl<CR>", opts) -- Clear search highlights
|
||||
keymap.set("n", "x", '"_x', opts) -- Delete character without copying into register
|
||||
|
||||
-- Comment keymaps
|
||||
keymap.set("n", "gcc", "<cmd>CommentToggle<CR>", { desc = "Toggle comment line" })
|
||||
keymap.set("n", "gc", "<cmd>CommentToggle<CR>", { desc = "Toggle comment line" })
|
||||
keymap.set("v", "gc", "<cmd>CommentToggle<CR>", { desc = "Toggle comment selection" })
|
||||
keymap.set("n", "gbc", "<cmd>CommentToggle<CR>", { desc = "Toggle comment block" })
|
||||
keymap.set("v", "gb", "<cmd>CommentToggle<CR>", { desc = "Toggle comment block" })
|
||||
|
||||
-- Save and quit (additional)
|
||||
keymap.set("n", "<leader>Q", ":qa!<CR>", { desc = "Quit all" })
|
||||
|
||||
-- Performance monitoring keymaps
|
||||
keymap.set("n", "<leader>pp", "<cmd>lua require('cargdev.core.function.performance_monitor').check_performance()<CR>", { desc = "Check performance" })
|
||||
keymap.set("n", "<leader>po", "<cmd>lua require('cargdev.core.function.performance_monitor').check_plugin_performance()<CR>", { desc = "Check plugin performance" })
|
||||
keymap.set("n", "<leader>pb", "<cmd>lua require('cargdev.core.function.performance_monitor').optimize_buffer()<CR>", { desc = "Optimize current buffer" })
|
||||
|
||||
-- LSP health and troubleshooting keymaps
|
||||
keymap.set("n", "<leader>pl", "<cmd>lua require('cargdev.core.function.performance_monitor').check_lsp_health()<CR>", { desc = "Check LSP health" })
|
||||
keymap.set("n", "<leader>pr", "<cmd>lua require('cargdev.core.function.performance_monitor').restart_lsp()<CR>", { desc = "Restart LSP" })
|
||||
|
||||
-- Notification management keymaps
|
||||
keymap.set("n", "<leader>nc", "<cmd>lua require('cargdev.core.function.notification_manager').clear_all_notifications()<CR>", { desc = "Clear all notifications" })
|
||||
keymap.set("n", "<leader>nn", "<cmd>lua require('cargdev.core.function.notification_manager').show_notification('Test notification', vim.log.levels.INFO)<CR>", { desc = "Test notification" })
|
||||
|
||||
-- Startup prompt management keymaps
|
||||
keymap.set("n", "<leader>ns", "<cmd>redraw!<CR><cmd>echo ''<CR>", { desc = "Clear startup prompts" })
|
||||
keymap.set("n", "<leader>nr", "<cmd>redraw!<CR>", { desc = "Redraw screen" })
|
||||
10
lua/cargdev/core/keymaps/gitconflict.lua
Normal file
10
lua/cargdev/core/keymaps/gitconflict.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
-- Git Conflict keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "]x", "<Plug>(git-conflict-next-conflict)", { desc = "Go to next git conflict" })
|
||||
keymap.set("n", "[x", "<Plug>(git-conflict-prev-conflict)", { desc = "Go to previous git conflict" })
|
||||
keymap.set("n", "<leader>co", "<Plug>(git-conflict-ours)", { desc = "Choose ours (git conflict)" })
|
||||
keymap.set("n", "<leader>ct", "<Plug>(git-conflict-theirs)", { desc = "Choose theirs (git conflict)" })
|
||||
keymap.set("n", "<leader>cb", "<Plug>(git-conflict-both)", { desc = "Choose both (git conflict)" })
|
||||
keymap.set("n", "<leader>c0", "<Plug>(git-conflict-none)", { desc = "Choose none (git conflict)" })
|
||||
keymap.set("n", "<leader>cq", "<Plug>(git-conflict-list)", { desc = "List all git conflicts" })
|
||||
6
lua/cargdev/core/keymaps/leet.lua
Normal file
6
lua/cargdev/core/keymaps/leet.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
-- Leet keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "<leader>lr", ":Leet test<CR>", { desc = "Test the leet current problem code" })
|
||||
keymap.set("n", "<leader>ls", ":Leet submit<CR>", { desc = "Submit the leet solution" })
|
||||
keymap.set("n", "<leader>lls", ":Leet last_submit<CR>", { desc = "Brings the latest submition from leetcode" })
|
||||
27
lua/cargdev/core/keymaps/lsp.lua
Normal file
27
lua/cargdev/core/keymaps/lsp.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
-- LSP and function navigation keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
-- =============================================================================
|
||||
-- LSP NAVIGATION (FUNCTION NAVIGATION)
|
||||
-- =============================================================================
|
||||
|
||||
-- Primary LSP navigation
|
||||
keymap.set("n", "gd", "<cmd>lua require('snacks.picker').lsp_definitions()<cr>", { desc = "Go to definition" })
|
||||
keymap.set("n", "gi", "<cmd>lua require('snacks.picker').lsp_implementations()<cr>", { desc = "Go to implementation" })
|
||||
keymap.set("n", "gr", "<cmd>lua require('snacks.picker').lsp_references()<cr>", { desc = "Show references" })
|
||||
keymap.set("n", "gt", "<cmd>lua require('snacks.picker').lsp_type_definitions()<cr>", { desc = "Go to type definition" })
|
||||
|
||||
-- Symbol search
|
||||
keymap.set("n", "<leader>ds", "<cmd>lua require('snacks.picker').lsp_document_symbols()<cr>", { desc = "Document symbols" })
|
||||
keymap.set("n", "<leader>ws", "<cmd>lua require('snacks.picker').lsp_workspace_symbols()<cr>", { desc = "Workspace symbols" })
|
||||
|
||||
-- Code actions and documentation
|
||||
keymap.set("n", "<leader>ca", "<cmd>lua vim.lsp.buf.code_action()<cr>", { desc = "Code actions" })
|
||||
keymap.set("n", "<leader>rn", "<cmd>lua vim.lsp.buf.rename()<cr>", { desc = "Rename" })
|
||||
keymap.set("n", "K", "<cmd>lua vim.lsp.buf.hover()<cr>", { desc = "Hover documentation" })
|
||||
|
||||
-- Diagnostics
|
||||
keymap.set("n", "<leader>D", "<cmd>lua require('snacks.picker').diagnostics()<cr>", { desc = "Show diagnostics" })
|
||||
keymap.set("n", "<leader>dd", "<cmd>lua vim.diagnostic.open_float()<cr>", { desc = "Line diagnostics" })
|
||||
keymap.set("n", "[d", "<cmd>lua vim.diagnostic.goto_prev()<cr>", { desc = "Previous diagnostic" })
|
||||
keymap.set("n", "]d", "<cmd>lua vim.diagnostic.goto_next()<cr>", { desc = "Next diagnostic" })
|
||||
86
lua/cargdev/core/keymaps/personal.lua
Normal file
86
lua/cargdev/core/keymaps/personal.lua
Normal file
@@ -0,0 +1,86 @@
|
||||
-- Personal keymaps (original workflow)
|
||||
local keymap = vim.keymap
|
||||
|
||||
-- =============================================================================
|
||||
-- PERSONAL KEYMAPS (ORIGINAL WORKFLOW)
|
||||
-- =============================================================================
|
||||
|
||||
keymap.set("n", "<leader>u", "gg0vG$$", { desc = "Select the whole file open" })
|
||||
keymap.set("n", "<leader>4", "0v$hy<Esc>0o<Esc>0p0kw<CR>", { desc = "Copy the entire line and paste just below" })
|
||||
|
||||
-- file management
|
||||
keymap.set("n", "<leader>w", ":w<CR>", { desc = "Save the current file" })
|
||||
keymap.set("n", "<leader>xa", ":xa<CR>", { desc = "Save and close all the files" })
|
||||
keymap.set("n", "<leader>q", ":q<CR>", { desc = "Close all the files" })
|
||||
keymap.set("n", "<leader>so", ":source %<CR>", { desc = "Reload nvim" })
|
||||
keymap.set("n", "<leader>no", ":noh <CR>", { desc = "Reset search a word" })
|
||||
|
||||
-- increment/decrement numbers
|
||||
keymap.set("n", "<leader>+", "<C-a>", { desc = "Increment number" }) -- increment
|
||||
keymap.set("n", "<leader>-", "<C-x>", { desc = "Decrement number" }) -- decrement
|
||||
|
||||
-- window management
|
||||
keymap.set("n", "<leader>sv", "<C-w>v", { desc = "Split window vertically" }) -- split window vertically
|
||||
keymap.set("n", "<leader>sh", "<C-w>s", { desc = "Split window horizontally" }) -- split window horizontally
|
||||
keymap.set("n", "<leader>se", "<C-w>=", { desc = "Make splits equal size" }) -- make split windows equal width & height
|
||||
keymap.set("n", "<leader>sx", "<cmd>close<CR>", { desc = "Close current split" }) -- close current split window
|
||||
|
||||
keymap.set("n", "<leader>to", "<cmd>tabnew<CR>", { desc = "Open new tab" }) -- open new tab
|
||||
keymap.set("n", "<leader>tx", "<cmd>tabclose<CR>", { desc = "Close current tab" }) -- close current tab
|
||||
keymap.set("n", "<leader>tn", "<cmd>tabn<CR>", { desc = "Go to next tab" }) -- go to next tab
|
||||
keymap.set("n", "<leader>tp", "<cmd>tabp<CR>", { desc = "Go to previous tab" }) -- go to previous tab
|
||||
keymap.set("n", "<leader>tf", "<cmd>tabnew %<CR>", { desc = "Open current buffer in new tab" }) -- move current buffer to new tab
|
||||
|
||||
-- sintax fixer
|
||||
keymap.set("n", "<leader>sy", "gg=G<CR>", { desc = "Format current file" })
|
||||
|
||||
keymap.set("n", "<C-e>", "10<C-e>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-y>", "10<C-y>", { noremap = true, silent = true })
|
||||
|
||||
-- close current file on buffer
|
||||
keymap.set("n", "<leader>bd", ":bd<CR>", { desc = "Close current file on buffer" })
|
||||
|
||||
-- Set buftabline mappings
|
||||
keymap.set("n", "<C-p>", ":bnext<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-n>", ":bprev<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Coding hacks
|
||||
keymap.set(
|
||||
"n",
|
||||
"<leader>re",
|
||||
"ggOimport<space>React<space>from<space>'react';<esc>0",
|
||||
{ desc = "Type import react from 'react' at the top of the file" }
|
||||
)
|
||||
keymap.set("n", "<leader>,", "$a,<ESC>", { desc = "Adding ',' at the end of the line" })
|
||||
keymap.set("n", "<leader>;", "$a;<ESC>", { desc = "Adding ';' at the end of the line" })
|
||||
keymap.set("n", "<leader>con", "oconsole.log()<ESC>0w$h", { desc = "Adding console.log() on the line below" })
|
||||
keymap.set("n", "<leader>x", ":!node %<CR>", { desc = "Running current project using node" })
|
||||
|
||||
-- Move between Tmux and Neovim splits using Alt + Arrow keys
|
||||
-- keymap.set("n", "<A-h>", ":TmuxNavigateLeft<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-j>", ":TmuxNavigateDown<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-k>", ":TmuxNavigateUp<CR>", { noremap = true, silent = true })
|
||||
-- keymap.set("n", "<A-l>", ":TmuxNavigateRight<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Resize splits using Ctrl + Arrow keys
|
||||
keymap.set("n", "<C-l>", ":vertical resize -5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-h>", ":vertical resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-k>", ":resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-j>", ":resize -5<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Run and Debug Project
|
||||
keymap.set("n", "<leader>pr", ":RunProject<CR>", { desc = "Run Project" })
|
||||
keymap.set("n", "<leader>pd", ":DebugProject<CR>", { desc = "Debug Project" })
|
||||
|
||||
-- Copilot Chat
|
||||
keymap.set("v", "<leader>zn", ":CopilotChatRename<CR>", { desc = "Rename variable (Copilot Chat)" })
|
||||
keymap.set("n", "<leader>zc", ":CopilotChat<CR>", { desc = "Open Copilot Chat" })
|
||||
keymap.set("v", "<leader>ze", ":CopilotChatExplain<CR>", { desc = "Explain code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zr", ":CopilotChatReview<CR>", { desc = "Review code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zf", ":CopilotChatFix<CR>", { desc = "Fix code issues (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zo", ":CopilotChatOptimize<CR>", { desc = "Optimize code (Copilot Chat)" })
|
||||
keymap.set("v", "<leader>zd", ":CopilotChatDocs<CR>", { desc = "Generate docs (Copilot Chat)" })
|
||||
|
||||
-- Copilot
|
||||
keymap.set("n", "<leader>cp", ":Copilot panel<CR>", { desc = "Copilot: Open copilot panel" })
|
||||
keymap.set("n", "<leader>ce", ":CopilotChatExplain<CR>", { desc = "Copilot Chat: Explain code" })
|
||||
208
lua/cargdev/core/keymaps/plugins.lua
Normal file
208
lua/cargdev/core/keymaps/plugins.lua
Normal file
@@ -0,0 +1,208 @@
|
||||
-- Plugin-specific keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
-- =============================================================================
|
||||
-- PLUGIN KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
-- NvimTree
|
||||
keymap.set("n", "<leader>e", "<cmd>NvimTreeToggle<CR>", { desc = "Toggle file explorer" })
|
||||
|
||||
-- Buffer management
|
||||
keymap.set("n", "<S-l>", ":bnext<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<S-h>", ":bprevious<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- Comment
|
||||
keymap.set("n", "<leader>/", "<cmd>lua require('Comment.api').toggle_current_linewise()<CR>", { desc = "Toggle comment" })
|
||||
keymap.set("v", "<leader>/", "<ESC><cmd>lua require('Comment.api').toggle_linewise_op(vim.fn.visualmode())<CR>", { desc = "Toggle comment" })
|
||||
|
||||
-- Git
|
||||
keymap.set("n", "<leader>gg", "<cmd>LazyGit<CR>", { desc = "LazyGit" })
|
||||
|
||||
-- DAP
|
||||
keymap.set("n", "<leader>db", "<cmd>lua require'dap'.toggle_breakpoint()<cr>", { desc = "Toggle breakpoint" })
|
||||
keymap.set("n", "<leader>dc", "<cmd>lua require'dap'.continue()<cr>", { desc = "Continue" })
|
||||
keymap.set("n", "<leader>di", "<cmd>lua require'dap'.step_into()<cr>", { desc = "Step into" })
|
||||
keymap.set("n", "<leader>do", "<cmd>lua require'dap'.step_over()<cr>", { desc = "Step over" })
|
||||
keymap.set("n", "<leader>dO", "<cmd>lua require'dap'.step_out()<cr>", { desc = "Step out" })
|
||||
keymap.set("n", "<leader>dr", "<cmd>lua require'dap'.repl.toggle()<cr>", { desc = "Toggle REPL" })
|
||||
keymap.set("n", "<leader>dl", "<cmd>lua require'dap'.run_last()<cr>", { desc = "Run last" })
|
||||
keymap.set("n", "<leader>du", "<cmd>lua require'dapui'.toggle()<cr>", { desc = "Toggle DAP UI" })
|
||||
keymap.set("n", "<leader>dt", "<cmd>lua require'dapui'.float_element()<cr>", { desc = "Float element" })
|
||||
|
||||
-- Trouble
|
||||
keymap.set("n", "<leader>xx", "<cmd>TroubleToggle<cr>", { desc = "Toggle Trouble" })
|
||||
keymap.set("n", "<leader>xw", "<cmd>TroubleToggle workspace_diagnostics<cr>", { desc = "Workspace diagnostics" })
|
||||
keymap.set("n", "<leader>xd", "<cmd>TroubleToggle document_diagnostics<cr>", { desc = "Document diagnostics" })
|
||||
keymap.set("n", "<leader>xl", "<cmd>TroubleToggle loclist<cr>", { desc = "Location list" })
|
||||
keymap.set("n", "<leader>xq", "<cmd>TroubleToggle quickfix<cr>", { desc = "Quickfix list" })
|
||||
|
||||
-- Terminal
|
||||
keymap.set("n", "<leader>tf", "<cmd>ToggleTerm direction=float<cr>", { desc = "ToggleTerm float" })
|
||||
keymap.set("n", "<leader>th", "<cmd>ToggleTerm size=10 direction=horizontal<cr>", { desc = "ToggleTerm horizontal split" })
|
||||
keymap.set("n", "<leader>tv", "<cmd>ToggleTerm size=80 direction=vertical<cr>", { desc = "ToggleTerm vertical split" })
|
||||
|
||||
-- Session management
|
||||
keymap.set("n", "<leader>ss", "<cmd>SessionSave<cr>", { desc = "Save session" })
|
||||
keymap.set("n", "<leader>sr", "<cmd>SessionRestore<cr>", { desc = "Restore session" })
|
||||
|
||||
-- Formatting
|
||||
keymap.set("n", "<leader>f", "<cmd>lua vim.lsp.buf.format()<cr>", { desc = "Format buffer" })
|
||||
|
||||
-- Substitute
|
||||
keymap.set("n", "<leader>s", "<cmd>lua require('substitute').operator()<cr>", { desc = "Substitute with motion" })
|
||||
keymap.set("n", "<leader>ss", "<cmd>lua require('substitute').line()<cr>", { desc = "Substitute line" })
|
||||
keymap.set("n", "<leader>S", "<cmd>lua require('substitute').eol()<cr>", { desc = "Substitute to end of line" })
|
||||
|
||||
-- Surround
|
||||
keymap.set("n", "<leader>sa", "<cmd>lua require('nvim-surround').surround_add()<cr>", { desc = "Add surrounding" })
|
||||
keymap.set("n", "<leader>sd", "<cmd>lua require('nvim-surround').surround_delete()<cr>", { desc = "Delete surrounding" })
|
||||
keymap.set("n", "<leader>sr", "<cmd>lua require('nvim-surround').surround_replace()<cr>", { desc = "Replace surrounding" })
|
||||
|
||||
-- Git conflicts
|
||||
keymap.set("n", "]x", "<Plug>(git-conflict-next-conflict)", { desc = "Go to next git conflict" })
|
||||
keymap.set("n", "[x", "<Plug>(git-conflict-prev-conflict)", { desc = "Go to previous git conflict" })
|
||||
keymap.set("n", "<leader>co", "<Plug>(git-conflict-ours)", { desc = "Choose ours (git conflict)" })
|
||||
keymap.set("n", "<leader>ct", "<Plug>(git-conflict-theirs)", { desc = "Choose theirs (git conflict)" })
|
||||
keymap.set("n", "<leader>cb", "<Plug>(git-conflict-both)", { desc = "Choose both (git conflict)" })
|
||||
keymap.set("n", "<leader>c0", "<Plug>(git-conflict-none)", { desc = "Choose none (git conflict)" })
|
||||
keymap.set("n", "<leader>cq", "<Plug>(git-conflict-list)", { desc = "List all git conflicts" })
|
||||
|
||||
-- LeetCode
|
||||
keymap.set("n", "<leader>lr", "<cmd>Leet run<CR>", { desc = "LeetCode: Run Code" })
|
||||
keymap.set("n", "<leader>ls", "<cmd>Leet submit<CR>", { desc = "LeetCode: Submit Code" })
|
||||
keymap.set("n", "<leader>ld", "<cmd>Leet daily<CR>", { desc = "LeetCode: Daily Challenge" })
|
||||
keymap.set("n", "<leader>ll", "<cmd>Leet list<CR>", { desc = "LeetCode: List Problems" })
|
||||
keymap.set("n", "<leader>lc", "<cmd>Leet console<CR>", { desc = "LeetCode: Open Console" })
|
||||
keymap.set("n", "<leader>lu", "<cmd>Leet cookie update<CR>", { desc = "LeetCode: Update Cookie" })
|
||||
keymap.set("n", "<leader>lh", "<cmd>Leet hints<cr>", { desc = "LeetCode: Open hints" })
|
||||
keymap.set("n", "<leader>lls", "<cmd>Leet last<cr>", { desc = "LeetCode: Get latest submission" })
|
||||
|
||||
-- Linting
|
||||
keymap.set("n", "<leader>l", "<cmd>Lint<cr>", { desc = "Lint current file" })
|
||||
|
||||
-- Project commands
|
||||
keymap.set("n", "<leader>p", "<cmd>lua require('cargdev.core.function.project_commands').run_project()<cr>", { desc = "Run project" })
|
||||
|
||||
-- Console log (different from personal <leader>con)
|
||||
keymap.set("n", "<leader>cl", "oconsole.log()<ESC>i", { desc = "Add console.log" })
|
||||
|
||||
-- DAP UI reset
|
||||
keymap.set("n", "<leader>drt", "<cmd>lua require('dapui').float_element()<cr>", { desc = "Reset DAP UI layout" })
|
||||
|
||||
-- DAP commands
|
||||
keymap.set("n", "<leader>dco", "<cmd>lua require('dap').commands()<cr>", { desc = "DAP commands" })
|
||||
keymap.set("n", "<leader>dcf", "<cmd>lua require('dap').list_breakpoints()<cr>", { desc = "DAP configs" })
|
||||
keymap.set("n", "<leader>dcb", "<cmd>lua require('dap').list_breakpoints()<cr>", { desc = "List breakpoints" })
|
||||
|
||||
-- Step out
|
||||
keymap.set("n", "<leader>dot", "<cmd>lua require('dap').step_out()<cr>", { desc = "Step out" })
|
||||
|
||||
-- Todos in trouble
|
||||
keymap.set("n", "<leader>xt", "<cmd>TodoTrouble<cr>", { desc = "Open todos in trouble" })
|
||||
|
||||
-- Surround mappings
|
||||
keymap.set("n", "ys", "<cmd>lua require('nvim-surround').surround_add()<cr>", { desc = "Add surrounding" })
|
||||
keymap.set("n", "yss", "<cmd>lua require('nvim-surround').surround_add()<cr>", { desc = "Add surrounding to line" })
|
||||
keymap.set("n", "yS", "<cmd>lua require('nvim-surround').surround_add()<cr>", { desc = "Add surrounding on new lines" })
|
||||
keymap.set("n", "ySS", "<cmd>lua require('nvim-surround').surround_add()<cr>", { desc = "Add surrounding to line on new lines" })
|
||||
|
||||
-- Comment mappings
|
||||
keymap.set("n", "gc", "<cmd>lua require('Comment.api').toggle_current_linewise()<cr>", { desc = "Toggle comment" })
|
||||
keymap.set("n", "gcc", "<cmd>lua require('Comment.api').toggle_current_linewise()<cr>", { desc = "Toggle current line comment" })
|
||||
keymap.set("n", "gco", "<cmd>lua require('Comment.api').insert_below()<cr>", { desc = "Insert comment below" })
|
||||
keymap.set("n", "gcO", "<cmd>lua require('Comment.api').insert_above()<cr>", { desc = "Insert comment above" })
|
||||
keymap.set("n", "gcA", "<cmd>lua require('Comment.api').insert_eol()<cr>", { desc = "Insert comment at end of line" })
|
||||
keymap.set("n", "gb", "<cmd>lua require('Comment.api').toggle_current_blockwise()<cr>", { desc = "Toggle block comment" })
|
||||
keymap.set("n", "gbc", "<cmd>lua require('Comment.api').toggle_current_blockwise()<cr>", { desc = "Toggle current block comment" })
|
||||
|
||||
-- =============================================================================
|
||||
-- TELESCOPE KEYMAPS (Enhanced with safe file searching)
|
||||
-- =============================================================================
|
||||
|
||||
-- Safe file search (prevents LSP errors and image freezing)
|
||||
keymap.set("n", "<leader>ff", "<cmd>Telescope safe_files find_files<CR>", { desc = "Find files (safe)" })
|
||||
keymap.set("n", "<leader>fs", "<cmd>Telescope live_grep<CR>", { desc = "Live grep (safe)" })
|
||||
keymap.set("n", "<leader>fg", "<cmd>Telescope git_files<CR>", { desc = "Git files (safe)" })
|
||||
keymap.set("n", "<leader>ft", "<cmd>Telescope text_files find_files<CR>", { desc = "Text files only" })
|
||||
|
||||
-- Regular telescope (use with caution)
|
||||
keymap.set("n", "<leader>fF", "<cmd>Telescope find_files<CR>", { desc = "Find files (all)" })
|
||||
|
||||
-- =============================================================================
|
||||
-- DATABASE KEYMAPS (Temporarily disabled to prevent conflicts)
|
||||
-- =============================================================================
|
||||
|
||||
-- -- Dadbod UI
|
||||
-- keymap.set("n", "<leader>du", "<cmd>DBUI<CR>", { desc = "Open Database UI" })
|
||||
-- keymap.set("n", "<leader>dul", "<cmd>DBUILastQueryInfo<CR>", { desc = "Show last query info" })
|
||||
-- keymap.set("n", "<leader>duf", "<cmd>DBUIFindBuffer<CR>", { desc = "Find database buffer" })
|
||||
|
||||
-- -- Database connections
|
||||
-- keymap.set("n", "<leader>dua", "<cmd>DBUIAddConnection<CR>", { desc = "Add database connection" })
|
||||
-- keymap.set("n", "<leader>dur", "<cmd>DBUIRenameBuffer<CR>", { desc = "Rename database buffer" })
|
||||
-- keymap.set("n", "<leader>dud", "<cmd>DBUIRefresh<CR>", { desc = "Refresh database" })
|
||||
|
||||
-- -- Database queries
|
||||
-- keymap.set("n", "<leader>due", "<cmd>DBExecute<CR>", { desc = "Execute SQL query" })
|
||||
-- keymap.set("n", "<leader>dus", "<cmd>DBSelect<CR>", { desc = "Select SQL query" })
|
||||
-- keymap.set("n", "<leader>dui", "<cmd>DBInsert<CR>", { desc = "Insert SQL query" })
|
||||
-- keymap.set("n", "<leader>duu", "<cmd>DBUpdate<CR>", { desc = "Update SQL query" })
|
||||
-- keymap.set("n", "<leader>dudel", "<cmd>DBDelete<CR>", { desc = "Delete SQL query" })
|
||||
|
||||
-- -- Database table operations
|
||||
-- keymap.set("n", "<leader>dut", "<cmd>DBUITableCreate<CR>", { desc = "Create table" })
|
||||
-- keymap.set("n", "<leader>duti", "<cmd>DBUITableIndex<CR>", { desc = "Show table indexes" })
|
||||
-- keymap.set("n", "<leader>dutc", "<cmd>DBUITableCount<CR>", { desc = "Count table rows" })
|
||||
-- keymap.set("n", "<leader>dutx", "<cmd>DBUITableExplain<CR>", { desc = "Explain table query" })
|
||||
-- keymap.set("n", "<leader>dutz", "<cmd>DBUITableSize<CR>", { desc = "Show table size" })
|
||||
|
||||
-- -- SQL formatting
|
||||
-- keymap.set("n", "<leader>duf", "<cmd>SQLFormat<CR>", { desc = "Format SQL query" })
|
||||
|
||||
-- -- Database utilities
|
||||
-- keymap.set("n", "<leader>duh", "<cmd>DBUIHideNotifications<CR>", { desc = "Hide database notifications" })
|
||||
-- keymap.set("n", "<leader>dus", "<cmd>DBUISaveBuffer<CR>", { desc = "Save database buffer" })
|
||||
-- keymap.set("n", "<leader>dul", "<cmd>DBUILoadBuffer<CR>", { desc = "Load database buffer" })
|
||||
|
||||
-- Redis specific
|
||||
keymap.set("n", "<leader>rds", "<cmd>Redis<CR>", { desc = "Open Redis" })
|
||||
keymap.set("n", "<leader>rdk", "<cmd>RedisKeys<CR>", { desc = "Show Redis keys" })
|
||||
keymap.set("n", "<leader>rdi", "<cmd>RedisInfo<CR>", { desc = "Show Redis info" })
|
||||
|
||||
-- MongoDB specific
|
||||
keymap.set("n", "<leader>mdb", "<cmd>MongoDB<CR>", { desc = "Open MongoDB" })
|
||||
keymap.set("n", "<leader>mdc", "<cmd>MongoDBConnect<CR>", { desc = "Connect to MongoDB" })
|
||||
keymap.set("n", "<leader>mdd", "<cmd>MongoDBDisconnect<CR>", { desc = "Disconnect from MongoDB" })
|
||||
|
||||
-- =============================================================================
|
||||
-- NATIVE AUTO WRAPPER KEYMAPS
|
||||
-- =============================================================================
|
||||
|
||||
-- Text wrapping controls
|
||||
keymap.set("n", "<leader>tw", "<cmd>set wrap!<cr>", { desc = "Toggle line wrapping" })
|
||||
keymap.set("n", "<leader>tl", "<cmd>set linebreak!<cr>", { desc = "Toggle line break" })
|
||||
keymap.set("n", "<leader>tc", "<cmd>set colorcolumn=80<cr>", { desc = "Show 80 char column" })
|
||||
keymap.set("n", "<leader>tC", "<cmd>set colorcolumn=<cr>", { desc = "Hide column guide" })
|
||||
|
||||
-- Format text using native Neovim commands
|
||||
keymap.set("n", "<leader>tf", "gqap", { desc = "Format paragraph" })
|
||||
keymap.set("v", "<leader>tf", "gq", { desc = "Format selection" })
|
||||
keymap.set("n", "<leader>tF", "gggqG", { desc = "Format entire file" })
|
||||
|
||||
-- Text width adjustments
|
||||
keymap.set("n", "<leader>t80", "<cmd>set textwidth=80<cr>", { desc = "Set text width to 80" })
|
||||
keymap.set("n", "<leader>t100", "<cmd>set textwidth=100<cr>", { desc = "Set text width to 100" })
|
||||
keymap.set("n", "<leader>t120", "<cmd>set textwidth=120<cr>", { desc = "Set text width to 120" })
|
||||
keymap.set("n", "<leader>t0", "<cmd>set textwidth=0<cr>", { desc = "Disable text width" })
|
||||
|
||||
-- Auto-wrap controls
|
||||
keymap.set("n", "<leader>ta", "<cmd>set formatoptions+=t<cr>", { desc = "Enable auto-wrap text" })
|
||||
keymap.set("n", "<leader>tA", "<cmd>set formatoptions-=t<cr>", { desc = "Disable auto-wrap text" })
|
||||
keymap.set("n", "<leader>tc", "<cmd>set formatoptions+=c<cr>", { desc = "Enable auto-wrap comments" })
|
||||
keymap.set("n", "<leader>tC", "<cmd>set formatoptions-=c<cr>", { desc = "Disable auto-wrap comments" })
|
||||
|
||||
-- Indent and wrap
|
||||
keymap.set("n", "<leader>ti", "<cmd>set breakindent!<cr>", { desc = "Toggle break indent" })
|
||||
keymap.set("n", "<leader>ts", "<cmd>set showbreak=↪ <cr>", { desc = "Show break indicator" })
|
||||
keymap.set("n", "<leader>tS", "<cmd>set showbreak=<cr>", { desc = "Hide break indicator" })
|
||||
5
lua/cargdev/core/keymaps/project.lua
Normal file
5
lua/cargdev/core/keymaps/project.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
-- Project Run/Debug keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "<leader>pr", ":RunProject<CR>", { desc = "Run Project" })
|
||||
keymap.set("n", "<leader>pd", ":DebugProject<CR>", { desc = "Debug Project" })
|
||||
28
lua/cargdev/core/keymaps/snacks.lua
Normal file
28
lua/cargdev/core/keymaps/snacks.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
-- Snacks keymaps (replacing Telescope)
|
||||
local keymap = vim.keymap
|
||||
|
||||
-- =============================================================================
|
||||
-- SNACKS NAVIGATION
|
||||
-- =============================================================================
|
||||
|
||||
-- File navigation
|
||||
keymap.set("n", "<leader>ff", "<cmd>lua require('snacks.picker').files()<cr>", { desc = "Find files" })
|
||||
keymap.set("n", "<leader>fs", "<cmd>lua require('snacks.picker').grep()<cr>", { desc = "Live grep" })
|
||||
keymap.set("n", "<leader>fc", "<cmd>lua require('snacks.picker').grep_string()<cr>", { desc = "Grep string" })
|
||||
keymap.set("n", "<leader>fr", "<cmd>lua require('snacks.picker').oldfiles()<cr>", { desc = "Recent files" })
|
||||
|
||||
-- Buffer and session management
|
||||
keymap.set("n", "<leader>fb", "<cmd>lua require('snacks.picker').buffers()<cr>", { desc = "Find buffers" })
|
||||
keymap.set("n", "<leader>fh", "<cmd>lua require('snacks.picker').help_tags()<cr>", { desc = "Help tags" })
|
||||
keymap.set("n", "<leader>fm", "<cmd>lua require('snacks.picker').marks()<cr>", { desc = "Find marks" })
|
||||
keymap.set("n", "<leader>fk", "<cmd>lua require('snacks.picker').keymaps()<cr>", { desc = "Find keymaps" })
|
||||
keymap.set("n", "<leader>fC", "<cmd>lua require('snacks.picker').commands()<cr>", { desc = "Find commands" })
|
||||
|
||||
-- Git (using Telescope for git features as Snacks may not have all git pickers)
|
||||
keymap.set("n", "<leader>fG", "<cmd>Telescope git_commits<cr>", { desc = "Git commits" })
|
||||
keymap.set("n", "<leader>fB", "<cmd>Telescope git_bcommits<cr>", { desc = "Git buffer commits" })
|
||||
keymap.set("n", "<leader>fg", "<cmd>Telescope git_branches<cr>", { desc = "Git branches" })
|
||||
keymap.set("n", "<leader>gs", "<cmd>Telescope git_status<cr>", { desc = "Git status" })
|
||||
|
||||
-- Todos (keep Telescope for todos as Snacks may not have this)
|
||||
keymap.set("n", "<leader>ft", "<cmd>TodoTelescope<cr>", { desc = "Find todos" })
|
||||
18
lua/cargdev/core/keymaps/sudoku.lua
Normal file
18
lua/cargdev/core/keymaps/sudoku.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
-- Sudoku keymaps
|
||||
-- WARNING: <leader>sng is mapped to two different commands below. Only the last one will take effect in Neovim.
|
||||
-- Consider changing one of the mappings if you want both actions available.
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "<leader>si1", ":Sudoku insert=1<CR>", { desc = "Add number 1" })
|
||||
keymap.set("n", "<leader>si2", ":Sudoku insert=2<CR>", { desc = "Add number 2" })
|
||||
keymap.set("n", "<leader>si3", ":Sudoku insert=3<CR>", { desc = "Add number 3" })
|
||||
keymap.set("n", "<leader>si4", ":Sudoku insert=4<CR>", { desc = "Add number 4" })
|
||||
keymap.set("n", "<leader>si5", ":Sudoku insert=5<CR>", { desc = "Add number 5" })
|
||||
keymap.set("n", "<leader>si6", ":Sudoku insert=6<CR>", { desc = "Add number 6" })
|
||||
keymap.set("n", "<leader>si7", ":Sudoku insert=7<CR>", { desc = "Add number 7" })
|
||||
keymap.set("n", "<leader>si8", ":Sudoku insert=8<CR>", { desc = "Add number 8" })
|
||||
keymap.set("n", "<leader>si9", ":Sudoku insert=9<CR>", { desc = "Add number 9" })
|
||||
keymap.set("n", "<leader>scc", ":Sudoku clear_cell<CR>", { desc = "Clear current cell" })
|
||||
keymap.set("n", "<leader>su", ":Sudoku undo<CR>", { desc = "Undo last action" })
|
||||
keymap.set("n", "<leader>sng", ":Sudoku new_game<CR>", { desc = "Starts new game" })
|
||||
keymap.set("n", "<leader>sng", ":Sudoku view=settings<CR>", { desc = "Display the settings" })
|
||||
16
lua/cargdev/core/keymaps/ufo.lua
Normal file
16
lua/cargdev/core/keymaps/ufo.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
-- nvim-ufo folding keymaps
|
||||
local ok_ufo, ufo = pcall(require, "ufo")
|
||||
local keymap = vim.keymap.set
|
||||
|
||||
if ok_ufo then
|
||||
keymap("n", "zR", ufo.openAllFolds, { desc = "Open all folds" })
|
||||
keymap("n", "zM", ufo.closeAllFolds, { desc = "Close all folds" })
|
||||
keymap("n", "zr", ufo.openFoldsExceptKinds, { desc = "Open folds except kinds" })
|
||||
keymap("n", "zm", ufo.closeFoldsWith, { desc = "Close folds with" })
|
||||
keymap("n", "K", function()
|
||||
local winid = ufo.peekFoldedLinesUnderCursor()
|
||||
if not winid then
|
||||
vim.lsp.buf.hover()
|
||||
end
|
||||
end, { desc = "Peek fold or hover" })
|
||||
end
|
||||
16
lua/cargdev/core/keymaps/window.lua
Normal file
16
lua/cargdev/core/keymaps/window.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
-- Window management keymaps
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "<leader>sv", "<C-w>v", { desc = "Split window vertically" })
|
||||
keymap.set("n", "<leader>sh", "<C-w>s", { desc = "Split window horizontally" })
|
||||
keymap.set("n", "<leader>se", "<C-w>=", { desc = "Make splits equal size" })
|
||||
keymap.set("n", "<leader>sx", "<cmd>close<CR>", { desc = "Close current split" })
|
||||
keymap.set("n", "<leader>to", "<cmd>tabnew<CR>", { desc = "Open new tab" })
|
||||
keymap.set("n", "<leader>tx", "<cmd>tabclose<CR>", { desc = "Close current tab" })
|
||||
keymap.set("n", "<leader>tn", "<cmd>tabn<CR>", { desc = "Go to next tab" })
|
||||
keymap.set("n", "<leader>tp", "<cmd>tabp<CR>", { desc = "Go to previous tab" })
|
||||
keymap.set("n", "<leader>tf", "<cmd>tabnew %<CR>", { desc = "Open current buffer in new tab" })
|
||||
keymap.set("n", "<C-l>", ":vertical resize -5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-h>", ":vertical resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-k>", ":resize +5<CR>", { noremap = true, silent = true })
|
||||
keymap.set("n", "<C-j>", ":resize -5<CR>", { noremap = true, silent = true })
|
||||
@@ -1,50 +1,218 @@
|
||||
vim.cmd("let g:netrw_liststyle = 3")
|
||||
|
||||
-- Core options and settings
|
||||
local opt = vim.opt
|
||||
local g = vim.g
|
||||
|
||||
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||
-- Disable deprecated API warnings
|
||||
vim.deprecate = function() end
|
||||
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
||||
-- Set leader key before lazy
|
||||
g.mapleader = " "
|
||||
g.maplocalleader = " "
|
||||
|
||||
-- tabs & indentation
|
||||
opt.tabstop = 2 -- 2 spaces for tabs (prettier default)
|
||||
opt.shiftwidth = 2 -- 2 spaces for indent width
|
||||
opt.expandtab = true -- expand tab to spaces
|
||||
opt.autoindent = true -- copy indent from current line when starting new one
|
||||
-- General settings
|
||||
opt.mouse = "a" -- Enable mouse
|
||||
opt.clipboard = "unnamedplus" -- Use system clipboard
|
||||
opt.swapfile = false -- Don't create swap files
|
||||
opt.completeopt = "menuone,noselect" -- Better completion
|
||||
opt.undofile = true -- Persistent undo
|
||||
opt.undodir = vim.fn.stdpath("data") .. "/undodir"
|
||||
|
||||
opt.wrap = false
|
||||
-- Search settings
|
||||
opt.ignorecase = true -- Case insensitive search
|
||||
opt.smartcase = true -- Case sensitive when uppercase
|
||||
opt.hlsearch = false -- Don't highlight search results
|
||||
opt.incsearch = true -- Incremental search
|
||||
|
||||
-- search settings
|
||||
opt.ignorecase = true -- ignore case when searching
|
||||
opt.smartcase = true -- if you include mixed case in your search, assumes you want case-sensitive
|
||||
-- Indentation
|
||||
opt.expandtab = true -- Use spaces instead of tabs
|
||||
opt.shiftwidth = 2 -- Number of spaces for indentation
|
||||
opt.tabstop = 2 -- Number of spaces for tabs
|
||||
opt.softtabstop = 2 -- Number of spaces for soft tabs
|
||||
opt.autoindent = true -- Auto indent
|
||||
opt.smartindent = true -- Smart indent
|
||||
|
||||
opt.cursorline = true
|
||||
-- Performance optimizations
|
||||
opt.lazyredraw = true -- Don't redraw while executing macros
|
||||
opt.updatetime = 100 -- Faster completion (reduced from 250)
|
||||
opt.timeoutlen = 200 -- Faster key sequence completion (reduced from 300)
|
||||
opt.redrawtime = 1500 -- Allow more time for loading syntax
|
||||
opt.synmaxcol = 240 -- Only highlight the first 240 columns
|
||||
opt.maxmempattern = 1000 -- Reduce memory for pattern matching
|
||||
opt.hidden = true -- Allow switching buffers without saving
|
||||
opt.scrolljump = 1 -- Minimal number of screen lines to scroll
|
||||
opt.scrolloff = 3 -- Keep 3 lines above/below cursor (reduced from 8)
|
||||
opt.sidescrolloff = 3 -- Keep 3 columns left/right of cursor (reduced from 8)
|
||||
|
||||
-- turn on termguicolors for tokyonight colorscheme to work
|
||||
-- (have to use iterm2 or any other true color terminal)
|
||||
opt.termguicolors = true
|
||||
opt.background = "dark" -- colorschemes that can be light or dark will be made dark
|
||||
opt.signcolumn = "yes" -- show sign column so that text doesn't shift
|
||||
-- UI settings
|
||||
opt.number = true -- Show line numbers
|
||||
opt.relativenumber = true -- Show relative line numbers
|
||||
opt.cursorline = false -- Disable cursor line highlighting for performance
|
||||
opt.cursorcolumn = false -- Don't highlight current column
|
||||
opt.signcolumn = "yes" -- Always show sign column
|
||||
|
||||
-- backspace
|
||||
opt.backspace = "indent,eol,start" -- allow backspace on indent, end of line or insert mode start position
|
||||
-- =============================================================================
|
||||
-- NATIVE AUTO WRAPPER CONFIGURATION
|
||||
-- =============================================================================
|
||||
|
||||
-- clipboard
|
||||
opt.clipboard:append("unnamedplus") -- use system clipboard as default register
|
||||
-- Text wrapping settings
|
||||
opt.wrap = true -- Enable line wrapping
|
||||
opt.linebreak = true -- Break lines at word boundaries
|
||||
opt.breakindent = true -- Preserve indentation in wrapped lines
|
||||
opt.showbreak = "↪ " -- Show break indicator
|
||||
opt.breakindentopt = "shift:2" -- Indent wrapped lines by 2 spaces
|
||||
|
||||
-- split windows
|
||||
opt.splitright = true -- split vertical window to the right
|
||||
opt.splitbelow = true -- split horizontal window to the bottom
|
||||
-- Text width and formatting
|
||||
opt.textwidth = 80 -- Set text width for auto-wrapping
|
||||
opt.colorcolumn = "80" -- Show column at 80 characters
|
||||
opt.formatoptions = "jcroqlnt" -- Format options for auto-wrapping
|
||||
|
||||
-- turn off swapfile
|
||||
opt.swapfile = false
|
||||
-- Auto-wrap specific settings
|
||||
opt.formatoptions:append("t") -- Auto-wrap text using textwidth
|
||||
opt.formatoptions:append("c") -- Auto-wrap comments using textwidth
|
||||
opt.formatoptions:append("r") -- Auto-wrap comments when pressing Enter
|
||||
opt.formatoptions:append("o") -- Auto-wrap comments when pressing 'o' or 'O'
|
||||
opt.formatoptions:append("q") -- Allow formatting of comments with 'gq'
|
||||
opt.formatoptions:append("l") -- Long lines are not broken in insert mode
|
||||
opt.formatoptions:append("n") -- Recognize numbered lists
|
||||
opt.formatoptions:append("j") -- Remove comment leader when joining lines
|
||||
|
||||
-- Enable soft wrapping of long lines
|
||||
opt.wrap = true
|
||||
-- Scroll settings for wrapped text
|
||||
opt.showmatch = true -- Show matching brackets
|
||||
opt.matchtime = 2 -- How long to show matching brackets
|
||||
|
||||
-- Break lines at convenient points (e.g. after whitespace) rather than in the middle of a word
|
||||
opt.linebreak = true
|
||||
-- Folding
|
||||
opt.foldmethod = "indent" -- Fold based on indentation
|
||||
opt.foldlevel = 99 -- Don't fold by default
|
||||
opt.foldnestmax = 10 -- Maximum nesting level
|
||||
|
||||
-- Optionally, add a prefix to wrapped lines to visually indicate a wrap
|
||||
opt.showbreak = "↪ "
|
||||
-- Backup and swap
|
||||
opt.backup = false -- Don't create backup files
|
||||
opt.writebackup = false -- Don't create backup files while writing
|
||||
opt.swapfile = false -- Don't create swap files
|
||||
|
||||
-- Terminal
|
||||
opt.termguicolors = true -- Enable true color support
|
||||
|
||||
-- File encoding
|
||||
opt.encoding = "utf-8" -- Set encoding to UTF-8
|
||||
opt.fileencoding = "utf-8" -- Set file encoding to UTF-8
|
||||
|
||||
-- Wildmenu
|
||||
opt.wildmenu = true -- Enable wildmenu
|
||||
opt.wildmode = "longest:full,full" -- Wildmenu mode
|
||||
|
||||
-- Split behavior
|
||||
opt.splitbelow = true -- Split below when creating horizontal splits
|
||||
opt.splitright = true -- Split right when creating vertical splits
|
||||
|
||||
-- Conceal
|
||||
opt.conceallevel = 2 -- Conceal certain characters
|
||||
|
||||
-- Disable providers that cause warnings
|
||||
g.loaded_perl_provider = 0 -- Disable Perl provider
|
||||
g.loaded_ruby_provider = 0 -- Disable Ruby provider (optional)
|
||||
|
||||
-- Lua specific settings
|
||||
opt.runtimepath:append(vim.fn.stdpath("config") .. "/lua")
|
||||
|
||||
-- Better diff
|
||||
opt.diffopt:append("algorithm:patience")
|
||||
opt.diffopt:append("indent-heuristic")
|
||||
|
||||
-- Better grep
|
||||
opt.grepprg = "rg --vimgrep --smart-case"
|
||||
opt.grepformat = "%f:%l:%c:%m"
|
||||
|
||||
-- Better listchars
|
||||
opt.list = true
|
||||
opt.listchars = {
|
||||
tab = "▸ ",
|
||||
trail = "·",
|
||||
extends = "❯",
|
||||
precedes = "❮",
|
||||
nbsp = "␣",
|
||||
}
|
||||
|
||||
-- Better fillchars
|
||||
opt.fillchars = {
|
||||
horiz = "━",
|
||||
horizup = "┻",
|
||||
horizdown = "┳",
|
||||
vert = "┃",
|
||||
vertleft = "┫",
|
||||
vertright = "┣",
|
||||
verthoriz = "╋",
|
||||
}
|
||||
|
||||
-- Disable builtin plugins
|
||||
local disabled_built_ins = {
|
||||
"netrw",
|
||||
"netrwPlugin",
|
||||
"netrwSettings",
|
||||
"netrwFileHandlers",
|
||||
"gzip",
|
||||
"zip",
|
||||
"zipPlugin",
|
||||
"tar",
|
||||
"tarPlugin",
|
||||
"getscript",
|
||||
"getscriptPlugin",
|
||||
"vimball",
|
||||
"vimballPlugin",
|
||||
"2html_plugin",
|
||||
"logipat",
|
||||
"rrhelper",
|
||||
"spellfile_plugin",
|
||||
"matchit",
|
||||
}
|
||||
|
||||
for _, plugin in pairs(disabled_built_ins) do
|
||||
g["loaded_" .. plugin] = 1
|
||||
end
|
||||
|
||||
-- =============================================================================
|
||||
-- AUTO WRAPPER AUTOCMDS
|
||||
-- =============================================================================
|
||||
|
||||
-- Set up auto-wrapping for different file types
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "text", "markdown", "gitcommit", "mail" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 80
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.linebreak = true
|
||||
vim.opt_local.formatoptions:append("t") -- Auto-wrap text
|
||||
end,
|
||||
})
|
||||
|
||||
-- Set up auto-wrapping for code files
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "lua", "javascript", "typescript", "python", "java", "cpp", "c", "rust", "go" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 100 -- Longer lines for code
|
||||
vim.opt_local.formatoptions:append("c") -- Auto-wrap comments
|
||||
vim.opt_local.formatoptions:append("r") -- Auto-wrap comments with leader
|
||||
vim.opt_local.formatoptions:append("o") -- Auto-wrap comments with 'o'
|
||||
vim.opt_local.formatoptions:append("q") -- Allow formatting of comments with 'gq'
|
||||
end,
|
||||
})
|
||||
|
||||
-- Set up auto-wrapping for documentation files
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "help", "man" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 78
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.linebreak = true
|
||||
vim.opt_local.formatoptions:append("t") -- Auto-wrap text
|
||||
end,
|
||||
})
|
||||
|
||||
-- Set up auto-wrapping for configuration files
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "conf", "config", "ini", "toml", "yaml", "json" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 80
|
||||
vim.opt_local.formatoptions:append("c") -- Auto-wrap comments
|
||||
end,
|
||||
})
|
||||
|
||||
215
lua/cargdev/core/startup_optimization.lua
Normal file
215
lua/cargdev/core/startup_optimization.lua
Normal file
@@ -0,0 +1,215 @@
|
||||
-- Startup performance optimizations
|
||||
local M = {}
|
||||
|
||||
-- Function to optimize startup performance
|
||||
function M.optimize_startup()
|
||||
-- Record startup time
|
||||
local start_time = vim.loop.hrtime()
|
||||
|
||||
-- Disable unused providers
|
||||
vim.g.loaded_python3_provider = 0
|
||||
vim.g.loaded_ruby_provider = 0
|
||||
vim.g.loaded_perl_provider = 0
|
||||
|
||||
-- Disable unused builtin plugins
|
||||
local disabled_builtins = {
|
||||
"gzip",
|
||||
"zip",
|
||||
"zipPlugin",
|
||||
"tar",
|
||||
"tarPlugin",
|
||||
"getscript",
|
||||
"getscriptPlugin",
|
||||
"vimball",
|
||||
"vimballPlugin",
|
||||
"2html_plugin",
|
||||
"logipat",
|
||||
"rrhelper",
|
||||
"spellfile_plugin",
|
||||
"matchit",
|
||||
"netrw",
|
||||
"netrwPlugin",
|
||||
"netrwSettings",
|
||||
"netrwFileHandlers",
|
||||
}
|
||||
|
||||
for _, plugin in pairs(disabled_builtins) do
|
||||
vim.g["loaded_" .. plugin] = 1
|
||||
end
|
||||
|
||||
-- Optimize filetype detection
|
||||
vim.g.do_filetype_lua = 1
|
||||
vim.g.did_load_filetypes = 0
|
||||
|
||||
-- Fix lazyredraw conflict with Noice - but only after LazyVim loads
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "LazyDone",
|
||||
callback = function()
|
||||
vim.opt.lazyredraw = false -- Disable to prevent Noice conflicts
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Optimize completion settings
|
||||
vim.opt.completeopt = "menuone,noselect"
|
||||
vim.opt.pumheight = 10 -- Limit completion menu height
|
||||
|
||||
-- Optimize search settings
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
||||
-- Optimize syntax highlighting
|
||||
vim.opt.synmaxcol = 240
|
||||
vim.opt.redrawtime = 1500
|
||||
|
||||
-- Optimize folding
|
||||
vim.opt.foldmethod = "manual"
|
||||
vim.opt.foldlevel = 99
|
||||
|
||||
-- Completely eliminate "Press ENTER" prompts
|
||||
vim.opt.shortmess = vim.opt.shortmess + "I" -- No intro message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "c" -- No completion messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "F" -- No file info message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "W" -- No "written" message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "A" -- No attention message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "o" -- No overwrite messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "t" -- No truncation messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "T" -- No truncation messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "f" -- No file info messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "i" -- No intro messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "l" -- No line number messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "m" -- No modification messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "n" -- No line number messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "r" -- No read messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "s" -- No search messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "x" -- No truncation messages
|
||||
|
||||
-- Disable swap file messages completely
|
||||
vim.opt.shortmess = vim.opt.shortmess + "O" -- No overwrite messages
|
||||
|
||||
-- Disable all startup messages
|
||||
vim.opt.cmdheight = 0 -- Reduce command line height
|
||||
vim.opt.showmode = false -- Don't show mode in command line
|
||||
|
||||
-- Record end time and calculate duration
|
||||
local end_time = vim.loop.hrtime()
|
||||
local duration = (end_time - start_time) / 1000000
|
||||
|
||||
-- Store startup time for performance monitoring
|
||||
vim.g.startup_time = duration
|
||||
|
||||
print("Startup optimizations applied in " .. string.format("%.2f", duration) .. "ms")
|
||||
end
|
||||
|
||||
-- Function to defer heavy operations
|
||||
function M.defer_heavy_operations()
|
||||
-- Defer treesitter loading
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "LazyDone",
|
||||
callback = function()
|
||||
vim.defer_fn(function()
|
||||
if vim.fn.exists(":TSBufEnable") > 0 then
|
||||
vim.cmd("TSBufEnable highlight")
|
||||
end
|
||||
end, 100)
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Defer LSP setup for non-critical buffers
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "LazyDone",
|
||||
callback = function()
|
||||
vim.defer_fn(function()
|
||||
-- Enable LSP for current buffer if it's a supported filetype
|
||||
local supported_ft = {
|
||||
"lua", "javascript", "typescript", "python", "java", "cpp", "c", "rust", "go",
|
||||
"html", "css", "json", "yaml", "markdown"
|
||||
}
|
||||
|
||||
local current_ft = vim.bo.filetype
|
||||
if vim.tbl_contains(supported_ft, current_ft) then
|
||||
vim.cmd("LspStart")
|
||||
end
|
||||
end, 200)
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Defer completion setup
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "LazyDone",
|
||||
callback = function()
|
||||
vim.defer_fn(function()
|
||||
if vim.fn.exists(":CmpStatus") > 0 then
|
||||
vim.cmd("CmpStatus")
|
||||
end
|
||||
end, 300)
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
end
|
||||
|
||||
-- Function to check if we're in a large repository
|
||||
function M.check_repo_size()
|
||||
local cwd = vim.fn.getcwd()
|
||||
local git_dir = cwd .. "/.git"
|
||||
|
||||
if vim.fn.isdirectory(git_dir) > 0 then
|
||||
-- Check if this is a large repository
|
||||
local file_count = tonumber(vim.fn.system("git ls-files | wc -l")) or 0
|
||||
|
||||
if file_count > 10000 then
|
||||
-- Large repository detected, apply additional optimizations
|
||||
vim.opt.tags = "" -- Disable tag loading
|
||||
vim.opt.cursorline = false -- Disable cursor line
|
||||
vim.opt.relativenumber = false -- Disable relative numbers
|
||||
|
||||
print("Large repository detected (" .. file_count .. " lines). Applied additional optimizations.")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Function to completely eliminate startup prompts
|
||||
function M.eliminate_startup_prompts()
|
||||
-- Create autocmd to handle any remaining startup messages
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
-- Clear any startup messages immediately
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
|
||||
-- Force clear any pending messages
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("redraw!")
|
||||
vim.cmd("echo ''")
|
||||
end, 50)
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- Create autocmd to handle any message events - use valid events
|
||||
vim.api.nvim_create_autocmd("BufReadPost", {
|
||||
callback = function()
|
||||
-- Clear messages that might cause prompts
|
||||
vim.cmd("redraw!")
|
||||
end,
|
||||
})
|
||||
|
||||
-- Override the message display to prevent prompts
|
||||
local original_echo = vim.cmd.echo
|
||||
vim.cmd.echo = function(msg)
|
||||
-- Only echo if it's not a startup message
|
||||
if not tostring(msg):match("Press ENTER") and not tostring(msg):match("lazyredraw") then
|
||||
original_echo(msg)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Initialize startup optimizations
|
||||
M.optimize_startup()
|
||||
M.defer_heavy_operations()
|
||||
M.check_repo_size()
|
||||
M.eliminate_startup_prompts()
|
||||
|
||||
return M
|
||||
@@ -1,56 +0,0 @@
|
||||
-- return {
|
||||
-- {
|
||||
-- "yetone/avante.nvim",
|
||||
-- event = "VeryLazy",
|
||||
-- lazy = false,
|
||||
-- version = false, -- Always pull the latest change
|
||||
-- opts = {
|
||||
-- provider = "cargdev", -- API provider configuration
|
||||
-- providers = {
|
||||
-- cargdev = {
|
||||
-- name = "cargdev", -- Optional
|
||||
-- endpoint = "https://api-ai.cargdev.io", -- API endpoint
|
||||
-- api_key_name = "CARGDEV_API_KEY", -- reference the ENV VAR below
|
||||
-- model = "deepseek-r1:latest",
|
||||
-- __inherited_from = "ollama", -- ensures compatibility
|
||||
-- max_tokens = 8192,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- -- Optional: Build from source if required
|
||||
-- build = "make",
|
||||
-- dependencies = {
|
||||
-- "nvim-treesitter/nvim-treesitter", -- Syntax highlighting support
|
||||
-- "stevearc/dressing.nvim", -- UI elements
|
||||
-- "nvim-lua/plenary.nvim", -- Utility library
|
||||
-- "MunifTanjim/nui.nvim", -- UI library for modal components
|
||||
-- -- Optional dependencies:
|
||||
-- "nvim-tree/nvim-web-devicons", -- Icons support
|
||||
-- "zbirenbaum/copilot.lua", -- Copilot integration
|
||||
-- {
|
||||
-- "HakonHarnes/img-clip.nvim", -- Image pasting support
|
||||
-- event = "VeryLazy",
|
||||
-- opts = {
|
||||
-- -- Recommended settings
|
||||
-- default = {
|
||||
-- embed_image_as_base64 = false,
|
||||
-- prompt_for_file_name = false,
|
||||
-- drag_and_drop = {
|
||||
-- insert_mode = true,
|
||||
-- },
|
||||
-- use_absolute_path = true, -- For Windows users
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- {
|
||||
-- "MeanderingProgrammer/render-markdown.nvim",
|
||||
-- ft = { "markdown", "Avante" },
|
||||
-- config = function()
|
||||
-- require("render-markdown").setup({
|
||||
-- file_types = { "markdown", "Avante" },
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- }
|
||||
@@ -1,6 +1,7 @@
|
||||
return {
|
||||
"goolord/alpha-nvim",
|
||||
event = "VimEnter",
|
||||
enable = true,
|
||||
config = function()
|
||||
local alpha = require("alpha")
|
||||
local dashboard = require("alpha.themes.dashboard")
|
||||
@@ -17,7 +18,7 @@ return {
|
||||
" ",
|
||||
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ",
|
||||
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ",
|
||||
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ",
|
||||
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██╗ ",
|
||||
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ",
|
||||
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ",
|
||||
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ",
|
||||
@@ -26,14 +27,21 @@ return {
|
||||
" 🚀 Welcome to CarGDev Neovim - Customize Your Flow! 🚀 ",
|
||||
}
|
||||
|
||||
-- 📂 Set menu with improved icons
|
||||
-- 📂 Set menu with improved icons and performance tools
|
||||
dashboard.section.buttons.val = {
|
||||
dashboard.button("e", "📜 New File", "<cmd>ene<CR>"),
|
||||
dashboard.button("SPC ee", "📂 File Explorer", "<cmd>NvimTreeToggle<CR>"),
|
||||
dashboard.button("SPC ff", "🔎 Find File", "<cmd>Telescope find_files<CR>"),
|
||||
dashboard.button("SPC fs", "📝 Find Word", "<cmd>Telescope live_grep<CR>"),
|
||||
dashboard.button("SPC wr", "💾 Restore Session", "<cmd>SessionRestore<CR>"),
|
||||
dashboard.button("q", "❌ Quit NVIM", "<cmd>qa<CR>"),
|
||||
dashboard.button("f", "🔎 Find File (Safe)", "<cmd>Telescope find_files<CR>"),
|
||||
dashboard.button("n", "📄 New File", "<cmd>ene<CR>"),
|
||||
dashboard.button("g", "📝 Find Text", "<cmd>Telescope live_grep<CR>"),
|
||||
dashboard.button("r", "📚 Recent Files", "<cmd>Telescope oldfiles<CR>"),
|
||||
dashboard.button("t", "🌳 File Tree", "<cmd>NvimTreeToggle<CR>"),
|
||||
dashboard.button("c", "⚙️ Config", "<cmd>e ~/.config/nvim/init.lua<CR>"),
|
||||
dashboard.button("L", "🦥 Lazy", "<cmd>Lazy<CR>"),
|
||||
dashboard.button("p", "📊 Performance", "<cmd>lua require('cargdev.core.function.performance_monitor').check_performance()<CR>"),
|
||||
dashboard.button("l", "🔧 LSP Health", "<cmd>lua require('cargdev.core.function.performance_monitor').check_lsp_health()<CR>"),
|
||||
dashboard.button("s", "🧩 Sudoku", "<cmd>Sudoku<CR>"),
|
||||
dashboard.button("e", "💻 LeetCode", "<cmd>Leet<CR>"),
|
||||
dashboard.button("m", "🔨 Mason", "<cmd>Mason<CR>"),
|
||||
dashboard.button("q", "🚪 Quit", "<cmd>qa<CR>"),
|
||||
}
|
||||
|
||||
-- 🎯 Function to center text within a width
|
||||
@@ -99,5 +107,42 @@ return {
|
||||
|
||||
-- 🔥 Disable folding on alpha buffer
|
||||
vim.cmd([[autocmd FileType alpha setlocal nofoldenable]])
|
||||
|
||||
-- 🚫 Suppress startup messages that can overlap with dashboard
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
-- Clear any startup messages
|
||||
vim.cmd("redraw!")
|
||||
|
||||
-- Suppress specific startup messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "I" -- No intro message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "c" -- No completion messages
|
||||
vim.opt.shortmess = vim.opt.shortmess + "F" -- No file info message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "W" -- No "written" message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "A" -- No attention message
|
||||
vim.opt.shortmess = vim.opt.shortmess + "o" -- No overwrite messages
|
||||
|
||||
-- Clear any existing messages
|
||||
vim.cmd("echo ''")
|
||||
end,
|
||||
once = true,
|
||||
})
|
||||
|
||||
-- 🎨 Improve dashboard appearance and reduce overlapping
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "alpha",
|
||||
callback = function()
|
||||
-- Set buffer options for better appearance
|
||||
vim.opt_local.number = false
|
||||
vim.opt_local.relativenumber = false
|
||||
vim.opt_local.cursorline = false
|
||||
vim.opt_local.cursorcolumn = false
|
||||
vim.opt_local.signcolumn = "no"
|
||||
vim.opt_local.foldcolumn = "0"
|
||||
|
||||
-- Clear any messages that might overlap
|
||||
vim.cmd("redraw!")
|
||||
end,
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -1,16 +1,24 @@
|
||||
return {
|
||||
"rmagatti/auto-session",
|
||||
config = function()
|
||||
local auto_session = require("auto-session")
|
||||
|
||||
require("auto-session").setup({
|
||||
auto_restore = false,
|
||||
suppressed_dirs = { "~/", "~/Dev/", "~/Downloads", "~/Documents", "~/Desktop/" },
|
||||
})
|
||||
|
||||
local keymap = vim.keymap
|
||||
|
||||
keymap.set("n", "<leader>wr", "<cmd>SessionRestore<CR>", { desc = "Restore session for cwd" }) -- restore last workspace session for current directory
|
||||
keymap.set("n", "<leader>ws", "<cmd>SessionSave<CR>", { desc = "Save session for auto session root dir" }) -- save workspace session for current working directory
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
log_level = "error",
|
||||
auto_session_suppress_dirs = { "~/", "~/Dev/", "~/Downloads", "~/Documents", "~/Desktop/" },
|
||||
auto_session_enable_last_session = false,
|
||||
auto_session_root_dir = vim.fn.stdpath("data") .. "/sessions/",
|
||||
auto_session_enabled = true,
|
||||
auto_save_enabled = true,
|
||||
auto_restore_enabled = false,
|
||||
auto_session_use_git_branch = true,
|
||||
auto_session_create_enabled = true,
|
||||
auto_session_enable_last_session = false,
|
||||
-- Don't auto-restore on startup to allow alpha to show
|
||||
auto_session_restore_on_startup = false,
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("auto-session").setup(opts)
|
||||
|
||||
-- Set recommended sessionoptions
|
||||
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -29,7 +29,35 @@ return {
|
||||
"hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions
|
||||
"ibhagwan/fzf-lua", -- for file_selector provider fzf
|
||||
"stevearc/dressing.nvim", -- for input provider dressing
|
||||
"folke/snacks.nvim", -- for input provider snacks
|
||||
{
|
||||
"folke/snacks.nvim", -- for input provider snacks
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("snacks").setup({
|
||||
-- Enable all snacks modules
|
||||
bigfile = { enabled = true },
|
||||
dashboard = { enabled = true },
|
||||
explorer = { enabled = true },
|
||||
image = { enabled = true },
|
||||
input = { enabled = true },
|
||||
lazygit = { enabled = true },
|
||||
notifier = { enabled = true },
|
||||
picker = { enabled = true },
|
||||
quickfile = { enabled = true },
|
||||
scope = { enabled = true },
|
||||
scroll = { enabled = true },
|
||||
statuscolumn = { enabled = true },
|
||||
terminal = { enabled = true },
|
||||
toggle = { enabled = true },
|
||||
words = { enabled = true },
|
||||
})
|
||||
|
||||
-- Set up vim.ui.input and vim.ui.select for snacks
|
||||
vim.ui.input = require("snacks.input").input
|
||||
vim.ui.select = require("snacks.picker").select
|
||||
end,
|
||||
},
|
||||
"nvim-tree/nvim-web-devicons", -- or echasnovski/mini.icons
|
||||
{
|
||||
"HakonHarnes/img-clip.nvim", -- Image pasting support
|
||||
@@ -52,6 +80,7 @@ return {
|
||||
config = function()
|
||||
require("render-markdown").setup({
|
||||
file_types = { "markdown", "Avante" },
|
||||
latex = { enabled = false }, -- Disable latex to avoid warning
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
@@ -1,55 +1,9 @@
|
||||
return {
|
||||
"folke/tokyonight.nvim",
|
||||
priority = 1000,
|
||||
"CarGDev/cargdev-cyberpunk",
|
||||
--[[ dir = "/Users/carlos/Documents/SSD_Documents/projects/cargdevschemecolor.nvim", ]]
|
||||
config = function()
|
||||
local transparent = false -- set to true if you would like to enable transparency
|
||||
|
||||
local bg = "#011628"
|
||||
local bg_dark = "#011423"
|
||||
local bg_highlight = "#143652"
|
||||
local bg_search = "#0A64AC"
|
||||
local bg_visual = "#275378"
|
||||
local fg = "#CBE0F0"
|
||||
local fg_dark = "#B4D0E9"
|
||||
local fg_gutter = "#627E97"
|
||||
local border = "#547998"
|
||||
|
||||
-- local bg = "#1A1A2E"
|
||||
-- local bg_dark = "#29294B"
|
||||
-- local bg_highlight = "#4E4E50"
|
||||
-- local bg_search = "#1A1743"
|
||||
-- local bg_visual = "#70707E"
|
||||
-- local fg = "#BFC5D2"
|
||||
-- local fg_dark = "#B4D0E9"
|
||||
-- local fg_gutter = "#627E97"
|
||||
-- local border = "#687494"
|
||||
|
||||
require("tokyonight").setup({
|
||||
style = "night",
|
||||
transparent = transparent,
|
||||
styles = {
|
||||
sidebars = transparent and "transparent" or "dark",
|
||||
floats = transparent and "transparent" or "dark",
|
||||
},
|
||||
on_colors = function(colors)
|
||||
colors.bg = bg
|
||||
colors.bg_dark = transparent and colors.none or bg_dark
|
||||
colors.bg_float = transparent and colors.none or bg_dark
|
||||
colors.bg_highlight = bg_highlight
|
||||
colors.bg_popup = bg_dark
|
||||
colors.bg_search = bg_search
|
||||
colors.bg_sidebar = transparent and colors.none or bg_dark
|
||||
colors.bg_statusline = transparent and colors.none or bg_dark
|
||||
colors.bg_visual = bg_visual
|
||||
colors.border = border
|
||||
colors.fg = fg
|
||||
colors.fg_dark = fg_dark
|
||||
colors.fg_float = fg
|
||||
colors.fg_gutter = fg_gutter
|
||||
colors.fg_sidebar = fg_dark
|
||||
end,
|
||||
})
|
||||
|
||||
vim.cmd("colorscheme tokyonight")
|
||||
require("cargdev-cyberpunk").setup()
|
||||
end,
|
||||
priority = 1000,
|
||||
lazy = false,
|
||||
}
|
||||
|
||||
@@ -8,12 +8,32 @@ return {
|
||||
-- import comment plugin safely
|
||||
local comment = require("Comment")
|
||||
|
||||
local ts_context_commentstring = require("ts_context_commentstring.integrations.comment_nvim")
|
||||
|
||||
-- enable comment
|
||||
-- Check if treesitter context commentstring is available
|
||||
local ok, ts_context_commentstring = pcall(require, "ts_context_commentstring.integrations.comment_nvim")
|
||||
|
||||
-- enable comment with safe configuration
|
||||
comment.setup({
|
||||
-- for commenting tsx, jsx, svelte, html files
|
||||
pre_hook = ts_context_commentstring.create_pre_hook(),
|
||||
pre_hook = ok and ts_context_commentstring.create_pre_hook() or nil,
|
||||
-- Add explicit commentstring fallbacks
|
||||
opleader = {
|
||||
line = "gc",
|
||||
block = "gb",
|
||||
},
|
||||
toggler = {
|
||||
line = "gcc",
|
||||
block = "gbc",
|
||||
},
|
||||
extra = {
|
||||
above = "gcO",
|
||||
below = "gco",
|
||||
eol = "gcA",
|
||||
},
|
||||
mappings = {
|
||||
basic = true,
|
||||
extra = true,
|
||||
extended = false,
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
-- return {
|
||||
-- {
|
||||
-- "olimorris/codecompanion.nvim",
|
||||
-- event = "VeryLazy",
|
||||
-- lazy = false,
|
||||
-- version = false,
|
||||
-- opts = {
|
||||
-- adapters = {
|
||||
-- openai = function()
|
||||
-- return require("codecompanion.adapters").extend("openai", {
|
||||
-- name = "openai",
|
||||
-- model = "codellama:7b",
|
||||
-- endpoint = "https://api-ai.cargdev.io/v1",
|
||||
-- api_key = os.getenv("CARGDEV_API_KEY"),
|
||||
-- max_tokens = 2048,
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
-- strategies = {
|
||||
-- chat = { adapter = "openai" },
|
||||
-- inline = { adapter = "openai" },
|
||||
-- agent = { adapter = "openai" },
|
||||
-- },
|
||||
-- },
|
||||
-- dependencies = {
|
||||
-- "nvim-lua/plenary.nvim",
|
||||
-- "nvim-treesitter/nvim-treesitter",
|
||||
-- "nvim-telescope/telescope.nvim",
|
||||
-- },
|
||||
-- }
|
||||
-- }
|
||||
--
|
||||
@@ -1,15 +1,17 @@
|
||||
return {
|
||||
"mfussenegger/nvim-dap",
|
||||
event = "VeryLazy", -- Changed from immediate loading to lazy loading
|
||||
cmd = { "Dap", "DapUI", "DapContinue", "DapToggleBreakpoint" }, -- Load on command
|
||||
dependencies = {
|
||||
{ "nvim-neotest/nvim-nio", lazy = false },
|
||||
"rcarriga/nvim-dap-ui",
|
||||
"jay-babu/mason-nvim-dap.nvim",
|
||||
"mfussenegger/nvim-dap-python",
|
||||
"theHamsta/nvim-dap-virtual-text",
|
||||
"nvim-telescope/telescope-dap.nvim",
|
||||
"Weissle/persistent-breakpoints.nvim",
|
||||
{
|
||||
"nvim-neotest/neotest",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-neotest/neotest-jest",
|
||||
"nvim-neotest/neotest-python",
|
||||
@@ -75,7 +77,7 @@ return {
|
||||
|
||||
-- 🧠 Mason DAP
|
||||
require("mason-nvim-dap").setup({
|
||||
ensure_installed = { "node2", "chrome", "firefox" },
|
||||
ensure_installed = { "js-debug-adapter", "firefox" },
|
||||
automatic_setup = true,
|
||||
})
|
||||
|
||||
@@ -113,35 +115,6 @@ return {
|
||||
dapui.close()
|
||||
end
|
||||
|
||||
-- 🎮 Keymaps
|
||||
keymap("n", "<leader>dc", dap.continue, { desc = "▶ Start Debugging" })
|
||||
keymap("n", "<leader>do", dap.step_over, { desc = "⏭ Step Over" })
|
||||
keymap("n", "<leader>di", dap.step_into, { desc = "⤵ Step Into" })
|
||||
keymap("n", "<leader>dot", dap.step_out, { desc = "⤴ Step Out" })
|
||||
keymap("n", "<leader>db", dap.toggle_breakpoint, { desc = "🔴 Toggle Breakpoint" })
|
||||
keymap("n", "<leader>dB", function()
|
||||
dap.set_breakpoint(fn.input("Breakpoint condition: "))
|
||||
end, { desc = "⚠ Conditional Breakpoint" })
|
||||
keymap("n", "<leader>dr", dap.repl.open, { desc = "💬 Open REPL" })
|
||||
keymap("n", "<leader>dl", dap.run_last, { desc = "🔁 Run Last Debug" })
|
||||
keymap("n", "<leader>du", dapui.toggle, { desc = "🧩 Toggle DAP UI" })
|
||||
keymap("n", "<leader>dq", dap.terminate, { desc = "⛔ Stop Debugging" })
|
||||
|
||||
-- 🧼 Reset UI
|
||||
keymap("n", "<leader>drt", function()
|
||||
dap.terminate()
|
||||
dapui.close()
|
||||
vim.defer_fn(function()
|
||||
dapui.open()
|
||||
end, 200)
|
||||
end, { desc = "🧼 Reset DAP UI Layout" })
|
||||
|
||||
-- 🔭 Telescope Integration
|
||||
require("telescope").load_extension("dap")
|
||||
keymap("n", "<leader>dcf", "<cmd>Telescope dap configurations<cr>", { desc = "🔭 DAP Configs" })
|
||||
keymap("n", "<leader>dcb", "<cmd>Telescope dap list_breakpoints<cr>", { desc = "🧷 List Breakpoints" })
|
||||
keymap("n", "<leader>dco", "<cmd>Telescope dap commands<cr>", { desc = "⚙️ DAP Commands" })
|
||||
|
||||
-- 🧿 Sign Icons
|
||||
for name, icon in pairs({
|
||||
DapBreakpoint = "🔴",
|
||||
@@ -180,19 +153,20 @@ return {
|
||||
},
|
||||
}
|
||||
|
||||
-- 🧠 Node.js (NestJS / TypeScript)
|
||||
dap.adapters.node2 = {
|
||||
-- 🧠 Node.js (NestJS / TypeScript) - Using js-debug-adapter
|
||||
dap.adapters.node = {
|
||||
type = "executable",
|
||||
command = "node",
|
||||
args = {
|
||||
os.getenv("HOME") .. "/.local/share/nvim/mason/packages/node-debug2-adapter/out/src/nodedebug.js",
|
||||
os.getenv("HOME") .. "/.local/share/nvim/mason/packages/js-debug-adapter/js-debug/src/dapDebugServer.js",
|
||||
"${port}",
|
||||
},
|
||||
}
|
||||
|
||||
dap.configurations.typescript = {
|
||||
{
|
||||
name = "Launch NestJS",
|
||||
type = "node2",
|
||||
type = "node",
|
||||
request = "launch",
|
||||
program = "${workspaceFolder}/dist/main.js",
|
||||
args = {},
|
||||
@@ -206,7 +180,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "Attach to NestJS (start:debug)",
|
||||
type = "node2",
|
||||
type = "node",
|
||||
request = "attach",
|
||||
port = 9229,
|
||||
protocol = "inspector",
|
||||
@@ -216,5 +190,8 @@ return {
|
||||
skipFiles = { "<node_internals>/**" },
|
||||
},
|
||||
}
|
||||
|
||||
-- Also add JavaScript configurations
|
||||
dap.configurations.javascript = dap.configurations.typescript
|
||||
end,
|
||||
}
|
||||
|
||||
132
lua/cargdev/plugins/database.lua
Normal file
132
lua/cargdev/plugins/database.lua
Normal file
@@ -0,0 +1,132 @@
|
||||
return {
|
||||
-- =============================================================================
|
||||
-- DATABASE PLUGINS
|
||||
-- =============================================================================
|
||||
|
||||
-- Modern database client for Neovim (replaces vim-dadbod)
|
||||
{
|
||||
"kndndrj/nvim-dbee",
|
||||
build = function()
|
||||
-- Install the Go binary
|
||||
require("dbee").install()
|
||||
end,
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
config = function()
|
||||
require("dbee").setup({
|
||||
-- Sources for database connections
|
||||
sources = {
|
||||
-- Load connections from memory (only guaranteed working connections)
|
||||
require("dbee.sources").MemorySource:new({
|
||||
-- PostgreSQL (confirmed working)
|
||||
{
|
||||
name = "mock_api",
|
||||
type = "postgres",
|
||||
url = "postgres://localhost:5432/mock_api?sslmode=disable",
|
||||
},
|
||||
}),
|
||||
-- Load connections from environment variable (for dynamic connections)
|
||||
require("dbee.sources").EnvSource:new("DBEE_CONNECTIONS"),
|
||||
-- Load connections from file (persistent storage - user-added connections)
|
||||
require("dbee.sources").FileSource:new(vim.fn.stdpath("cache") .. "/dbee/persistence.json"),
|
||||
},
|
||||
|
||||
-- UI Configuration
|
||||
ui = {
|
||||
-- Layout configuration
|
||||
layout = {
|
||||
-- Drawer (left panel) width
|
||||
drawer_width = 30,
|
||||
-- Result buffer height
|
||||
result_height = 15,
|
||||
-- Editor buffer height
|
||||
editor_height = 10,
|
||||
},
|
||||
},
|
||||
|
||||
-- Database configuration
|
||||
database = {
|
||||
-- Default page size for results
|
||||
page_size = 100,
|
||||
-- Connection timeout in seconds
|
||||
timeout = 30,
|
||||
-- Maximum number of connections
|
||||
max_connections = 5,
|
||||
},
|
||||
|
||||
-- Logging configuration
|
||||
log = {
|
||||
-- Log level: "debug", "info", "warn", "error"
|
||||
level = "info",
|
||||
-- Log file path
|
||||
file = vim.fn.stdpath("cache") .. "/dbee/dbee.log",
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- SQL formatting and syntax highlighting
|
||||
{
|
||||
"b4winckler/vim-objc",
|
||||
ft = { "sql", "mysql", "postgresql", "oracle" },
|
||||
},
|
||||
|
||||
-- SQL formatting with sqlparse
|
||||
{
|
||||
"b4winckler/vim-objc",
|
||||
ft = { "sql" },
|
||||
config = function()
|
||||
vim.g.sqlformat_command = "sqlformat"
|
||||
vim.g.sqlformat_options = "-r -k upper"
|
||||
end,
|
||||
},
|
||||
|
||||
|
||||
|
||||
-- MongoDB syntax highlighting (without LSP)
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
ft = { "javascript", "json" },
|
||||
config = function()
|
||||
-- Enable MongoDB syntax highlighting for .js files
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "javascript", "json" },
|
||||
callback = function()
|
||||
vim.bo.filetype = "javascript"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- Redis syntax highlighting
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
ft = { "redis" },
|
||||
config = function()
|
||||
-- Enable Redis syntax highlighting
|
||||
vim.api.nvim_create_autocmd("BufRead,BufNewFile", {
|
||||
pattern = "*.redis",
|
||||
callback = function()
|
||||
vim.bo.filetype = "redis"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- CQL (Cassandra Query Language) syntax highlighting
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
ft = { "cql" },
|
||||
config = function()
|
||||
-- Enable CQL syntax highlighting
|
||||
vim.api.nvim_create_autocmd("BufRead,BufNewFile", {
|
||||
pattern = "*.cql",
|
||||
callback = function()
|
||||
vim.bo.filetype = "cql"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
333
lua/cargdev/plugins/essential_enhancements.lua
Normal file
333
lua/cargdev/plugins/essential_enhancements.lua
Normal file
@@ -0,0 +1,333 @@
|
||||
return {
|
||||
-- Enhanced notifications with better positioning
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
vim.notify = require("notify")
|
||||
|
||||
-- Configure notifications to avoid overlapping
|
||||
require("notify").setup({
|
||||
-- Position notifications to avoid overlapping with dashboard
|
||||
stages = "fade_in_slide_out",
|
||||
timeout = 3000,
|
||||
background_colour = "#000000",
|
||||
max_width = 50,
|
||||
max_height = 10,
|
||||
default_timeout = 4000,
|
||||
top_down = false, -- Show newer notifications at the bottom
|
||||
render = "minimal",
|
||||
minimum_width = 20,
|
||||
icons = {
|
||||
ERROR = " ",
|
||||
WARN = " ",
|
||||
INFO = " ",
|
||||
DEBUG = " ",
|
||||
TRACE = " ",
|
||||
},
|
||||
-- Position notifications away from dashboard
|
||||
on_open = function(win)
|
||||
-- Move notification window to avoid overlapping with alpha dashboard
|
||||
local config = vim.api.nvim_win_get_config(win)
|
||||
if config.relative == "editor" then
|
||||
-- Position notifications in the top-right, but not overlapping dashboard
|
||||
vim.api.nvim_win_set_config(win, {
|
||||
row = 2,
|
||||
col = vim.o.columns - 60, -- Position from right side
|
||||
relative = "editor",
|
||||
width = 55,
|
||||
height = 8,
|
||||
})
|
||||
end
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- Better session management
|
||||
{
|
||||
"folke/persistence.nvim",
|
||||
event = "BufReadPre",
|
||||
opts = {
|
||||
dir = vim.fn.stdpath("state") .. "/sessions",
|
||||
options = { "buffers", "curdir", "tabpages", "winsize", "help" }
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>qs", function() require("persistence").load() end, desc = "Restore Session" },
|
||||
{ "<leader>ql", function() require("persistence").load({ last = true }) end, desc = "Restore Last Session" },
|
||||
{ "<leader>qd", function() require("persistence").stop() end, desc = "Don't Save Current Session" },
|
||||
},
|
||||
},
|
||||
|
||||
-- Project management
|
||||
{
|
||||
"ahmedkhalf/project.nvim",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("project_nvim").setup({
|
||||
detection_methods = { "pattern", "lsp" },
|
||||
patterns = {
|
||||
".git",
|
||||
"package.json",
|
||||
"pyproject.toml",
|
||||
"Cargo.toml",
|
||||
"go.mod",
|
||||
"requirements.txt"
|
||||
},
|
||||
show_hidden = false,
|
||||
silent_chdir = true,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- Better search and replace
|
||||
{
|
||||
"nvim-pack/nvim-spectre",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("spectre").setup({
|
||||
color_devicons = true,
|
||||
open_cmd = "vnew",
|
||||
live_update = false, -- Disable for better performance
|
||||
line_sep_start = "┌──────────────────────────────────────────────────────────────────────────────┐",
|
||||
line_sep = "├──────────────────────────────────────────────────────────────────────────────┤",
|
||||
line_sep_end = "└──────────────────────────────────────────────────────────────────────────────┘",
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{ "<leader>sr", function() require("spectre").open() end, desc = "Search and Replace" },
|
||||
},
|
||||
},
|
||||
|
||||
-- Enhanced terminal
|
||||
{
|
||||
"akinsho/toggleterm.nvim",
|
||||
version = "*",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
size = 20,
|
||||
open_mapping = [[<c-\>]],
|
||||
shade_filetypes = {},
|
||||
direction = "float",
|
||||
float_opts = {
|
||||
border = "curved",
|
||||
highlights = {
|
||||
border = "Normal",
|
||||
background = "Normal",
|
||||
},
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>tt", "<cmd>ToggleTerm<CR>", desc = "Toggle Terminal" },
|
||||
{ "<leader>tf", "<cmd>ToggleTerm direction=float<CR>", desc = "Float Terminal" },
|
||||
},
|
||||
},
|
||||
|
||||
-- Better file operations
|
||||
{
|
||||
"chrisgrieser/nvim-early-retirement",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
retirementAgeMins = 1440, -- 24 hours
|
||||
notificationOnAutoClose = true,
|
||||
deleteBufferWhenFileDeleted = true,
|
||||
},
|
||||
},
|
||||
|
||||
-- Enhanced quickfix
|
||||
{
|
||||
"kevinhwang91/nvim-bqf",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("bqf").setup({
|
||||
auto_enable = true,
|
||||
preview = {
|
||||
win_height = 12,
|
||||
win_vheight = 12,
|
||||
delay_syntax = 80,
|
||||
border_chars = { "┃", "┃", "━", "━", "┏", "┃", "┃", "┛" },
|
||||
},
|
||||
func_map = {
|
||||
vsplit = "",
|
||||
ptogglemode = "z,",
|
||||
stoggleup = "",
|
||||
},
|
||||
filter = {
|
||||
fzf = {
|
||||
action_for = { ["ctrl-s"] = "split" },
|
||||
extra_opts = { "--bind", "ctrl-o:toggle-all", "--prompt", "> " },
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- Better completion menu with improved positioning
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
opts = {
|
||||
lsp = {
|
||||
override = {
|
||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||
["vim.lsp.util.stylize_markdown"] = true,
|
||||
["cmp.entry.get_documentation"] = true,
|
||||
},
|
||||
},
|
||||
routes = {
|
||||
{
|
||||
filter = {
|
||||
event = "msg_show",
|
||||
any = {
|
||||
{ find = "%d+L, %d+B" },
|
||||
{ find = "; after #%d+" },
|
||||
{ find = "; before #%d+" },
|
||||
{ find = "%d fewer lines" },
|
||||
{ find = "%d more lines" },
|
||||
},
|
||||
},
|
||||
view = "mini",
|
||||
},
|
||||
-- Route startup messages to avoid overlapping with dashboard
|
||||
{
|
||||
filter = {
|
||||
event = "msg_show",
|
||||
any = {
|
||||
{ find = "ideaDrop loaded!" },
|
||||
{ find = "noice.nvim" },
|
||||
{ find = "lazyredraw" },
|
||||
},
|
||||
},
|
||||
view = "notify",
|
||||
opts = { timeout = 2000 },
|
||||
},
|
||||
},
|
||||
presets = {
|
||||
bottom_search = true,
|
||||
command_palette = true,
|
||||
long_message_to_split = true,
|
||||
inc_rename = true,
|
||||
},
|
||||
-- Position command palette and other UI elements to avoid overlapping
|
||||
cmdline = {
|
||||
position = {
|
||||
row = "50%",
|
||||
col = "50%",
|
||||
},
|
||||
},
|
||||
popupmenu = {
|
||||
position = {
|
||||
row = "50%",
|
||||
col = "50%",
|
||||
},
|
||||
},
|
||||
notify = {
|
||||
-- Position notifications to avoid dashboard overlap
|
||||
position = "top_right",
|
||||
max_width = 50,
|
||||
max_height = 10,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- Better status line
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
options = {
|
||||
theme = "auto",
|
||||
globalstatus = true,
|
||||
disabled_filetypes = { statusline = { "dashboard", "alpha" } },
|
||||
component_separators = { left = "│", right = "│" },
|
||||
section_separators = { left = "", right = "" },
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- Better buffer management
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
options = {
|
||||
mode = "buffers",
|
||||
separator_style = "slant",
|
||||
always_show_bufferline = false,
|
||||
show_buffer_close_icons = true,
|
||||
show_close_icon = false,
|
||||
color_icons = true,
|
||||
diagnostics = "nvim_lsp",
|
||||
diagnostics_indicator = function(_, _, diag)
|
||||
local icons = require("lazyvim.config").icons.diagnostics
|
||||
local ret = (diag.error and icons.Error .. diag.error .. " " or "")
|
||||
.. (diag.warning and icons.Warn .. diag.warning or "")
|
||||
return vim.trim(ret)
|
||||
end,
|
||||
offsets = {
|
||||
{
|
||||
filetype = "neo-tree",
|
||||
text = "Neo-tree",
|
||||
highlight = "Directory",
|
||||
text_align = "left",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- Better git integration
|
||||
{
|
||||
"lewis6991/gitsigns.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
signs = {
|
||||
add = { text = "│" },
|
||||
change = { text = "│" },
|
||||
delete = { text = "_" },
|
||||
topdelete = { text = "‾" },
|
||||
changedelete = { text = "~" },
|
||||
untracked = { text = "┆" },
|
||||
},
|
||||
signcolumn = true,
|
||||
numhl = false,
|
||||
linehl = false,
|
||||
word_diff = false,
|
||||
watch_gitdir = {
|
||||
interval = 1000,
|
||||
follow_files = true,
|
||||
},
|
||||
attach_to_untracked = true,
|
||||
current_line_blame = false,
|
||||
current_line_blame_opts = {
|
||||
virt_text = true,
|
||||
virt_text_pos = "eol",
|
||||
delay = 1000,
|
||||
ignore_whitespace = false,
|
||||
},
|
||||
sign_priority = 6,
|
||||
update_debounce = 100,
|
||||
status_formatter = nil,
|
||||
max_file_length = 40000,
|
||||
preview_config = {
|
||||
border = "single",
|
||||
style = "minimal",
|
||||
relative = "cursor",
|
||||
row = 0,
|
||||
col = 1,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1,10 +1,26 @@
|
||||
return {
|
||||
--[[ dir = "/Users/carlos/Documents/SSD_Documents/personals/ideaDrop", ]]
|
||||
--[[dir = "/Volumes/Carlos_SSD/Documents/projects/ideaDrop",]]
|
||||
"CarGDev/ideadrop.nvim",
|
||||
name = "ideaDrop",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
config = function()
|
||||
require("ideaDrop").setup({
|
||||
idea_dir = "/Users/carlos/Nextcloud/ObsidianVault",
|
||||
})
|
||||
|
||||
-- Set up convenient keymaps for ideaDrop
|
||||
vim.keymap.set("n", "<leader>id", ":IdeaRight<CR>", { desc = "Open today's idea in right buffer" })
|
||||
vim.keymap.set("n", "<leader>in", ":IdeaRight ", { desc = "Open named idea in right buffer" })
|
||||
vim.keymap.set("n", "<leader>it", ":IdeaTree<CR>", { desc = "Open idea tree browser" })
|
||||
vim.keymap.set("n", "<leader>is", ":IdeaSearch ", { desc = "Search ideas" })
|
||||
vim.keymap.set("n", "<leader>ig", ":IdeaTags<CR>", { desc = "Browse tags" })
|
||||
vim.keymap.set("n", "<leader>if", ":Idea<CR>", { desc = "Open today's idea in float" })
|
||||
|
||||
-- Optional: Override the default :Idea command to use right buffer instead of float
|
||||
-- Uncomment the line below if you want :Idea to always use the right buffer
|
||||
-- vim.api.nvim_create_user_command("Idea", function(opts) vim.cmd("IdeaRight " .. (opts.args or "")) end, { nargs = "?" })
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -3,6 +3,15 @@ return {
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
main = "ibl",
|
||||
opts = {
|
||||
indent = { char = "┊" },
|
||||
indent = {
|
||||
char = "┊",
|
||||
exclude_filetypes = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" }
|
||||
},
|
||||
scope = {
|
||||
enabled = false
|
||||
},
|
||||
exclude = {
|
||||
filetypes = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" }
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,4 +1,23 @@
|
||||
return {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"christoomey/vim-tmux-navigator",
|
||||
}
|
||||
-- Auto-load all plugin files from the plugins directory
|
||||
local function load_all_plugins()
|
||||
local plugins = {}
|
||||
|
||||
-- Add basic plugins
|
||||
table.insert(plugins, "nvim-lua/plenary.nvim")
|
||||
table.insert(plugins, "christoomey/vim-tmux-navigator")
|
||||
|
||||
-- Get all .lua files in the plugins directory (excluding init.lua and lsp directory)
|
||||
local plugin_path = vim.fn.stdpath("config") .. "/lua/cargdev/plugins"
|
||||
local files = vim.fn.globpath(plugin_path, "*.lua", false, true)
|
||||
|
||||
for _, file in ipairs(files) do
|
||||
local filename = vim.fn.fnamemodify(file, ":t:r") -- Get filename without extension
|
||||
if filename ~= "init" then -- Skip init.lua itself
|
||||
table.insert(plugins, { import = "cargdev.plugins." .. filename })
|
||||
end
|
||||
end
|
||||
|
||||
return plugins
|
||||
end
|
||||
|
||||
return load_all_plugins()
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
return {
|
||||
--[[ dir = "/Users/carlos/Documents/SSD_Documents/projects/lazygit.nvim", ]]
|
||||
"kdheepak/lazygit.nvim",
|
||||
cmd = {
|
||||
"LazyGit",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
event = { "BufReadPost", "BufNewFile" }, -- Changed from BufReadPre to BufReadPost for better performance
|
||||
dependencies = {
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
{ "antosha417/nvim-lsp-file-operations", config = true },
|
||||
@@ -14,7 +14,6 @@ return {
|
||||
local lspconfig = require("lspconfig")
|
||||
local mason_lspconfig = require("mason-lspconfig")
|
||||
local cmp_nvim_lsp = require("cmp_nvim_lsp")
|
||||
local keymap = vim.keymap
|
||||
|
||||
mason_lspconfig.setup({
|
||||
ensure_installed = {
|
||||
@@ -24,36 +23,126 @@ return {
|
||||
"gopls",
|
||||
"graphql",
|
||||
"html",
|
||||
-- "jdtls", -- uncomment if you’re actively doing Java
|
||||
-- "jdtls", -- uncomment if you're actively doing Java
|
||||
"lua_ls",
|
||||
"prismals",
|
||||
"pyright",
|
||||
"svelte",
|
||||
"tailwindcss",
|
||||
-- Database language servers
|
||||
"sqls", -- SQL language server
|
||||
"mongodb", -- MongoDB language server
|
||||
"redis", -- Redis language server
|
||||
"oracle", -- Oracle language server
|
||||
"cassandra", -- Cassandra language server
|
||||
},
|
||||
})
|
||||
|
||||
local capabilities = cmp_nvim_lsp.default_capabilities()
|
||||
|
||||
-- Enhanced error handling for LSP diagnostics
|
||||
vim.diagnostic.config({
|
||||
signs = {
|
||||
severity = {
|
||||
min = vim.diagnostic.severity.WARN,
|
||||
},
|
||||
icons = {
|
||||
Error = " ",
|
||||
Warn = " ",
|
||||
Error = " ",
|
||||
Warn = " ",
|
||||
Hint = " ",
|
||||
Info = " ",
|
||||
Info = " ",
|
||||
},
|
||||
},
|
||||
-- Performance optimizations
|
||||
update_in_insert = false, -- Don't update diagnostics in insert mode
|
||||
virtual_text = false, -- Disable virtual text for better performance
|
||||
underline = true, -- Keep underline for errors
|
||||
severity_sort = true, -- Sort diagnostics by severity
|
||||
-- Error handling
|
||||
float = {
|
||||
border = "rounded",
|
||||
source = "always",
|
||||
format = function(diagnostic)
|
||||
if diagnostic.source == "LSP" then
|
||||
return string.format("%s [%s]", diagnostic.message, diagnostic.source)
|
||||
end
|
||||
return diagnostic.message
|
||||
end,
|
||||
},
|
||||
})
|
||||
|
||||
-- File type filtering to prevent LSP errors on non-text files
|
||||
local function should_attach_lsp(client, bufnr)
|
||||
local filetype = vim.api.nvim_buf_get_option(bufnr, "filetype")
|
||||
local filename = vim.api.nvim_buf_get_name(bufnr)
|
||||
|
||||
-- Skip non-text files
|
||||
local non_text_extensions = {
|
||||
"png", "jpg", "jpeg", "gif", "svg", "ico", "bmp", "webp",
|
||||
"mp4", "avi", "mov", "wmv", "flv", "webm", "mkv",
|
||||
"mp3", "wav", "flac", "aac", "ogg",
|
||||
"pdf", "doc", "docx", "xls", "xlsx", "ppt", "pptx",
|
||||
"zip", "rar", "7z", "tar", "gz", "bz2",
|
||||
"exe", "dll", "so", "dylib", "bin"
|
||||
}
|
||||
|
||||
for _, ext in ipairs(non_text_extensions) do
|
||||
if filename:match("%." .. ext .. "$") then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
-- Skip empty or very large files
|
||||
local line_count = vim.api.nvim_buf_line_count(bufnr)
|
||||
if line_count == 0 or line_count > 50000 then
|
||||
return false
|
||||
end
|
||||
|
||||
-- Skip specific file types that don't need LSP
|
||||
local skip_filetypes = {
|
||||
"git", "gitcommit", "gitrebase", "gitconfig",
|
||||
"help", "man", "markdown", "text",
|
||||
"qf", "quickfix", "locationlist",
|
||||
"terminal", "toggleterm"
|
||||
}
|
||||
|
||||
for _, skip_ft in ipairs(skip_filetypes) do
|
||||
if filetype == skip_ft then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
local servers = {
|
||||
cssls = {},
|
||||
cssls = {
|
||||
settings = {
|
||||
css = {
|
||||
validate = true,
|
||||
lint = {
|
||||
unknownAtRules = "ignore"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
emmet_ls = {},
|
||||
eslint = {},
|
||||
gopls = {},
|
||||
eslint = {
|
||||
settings = {
|
||||
workingDirectory = { mode = "auto" }
|
||||
}
|
||||
},
|
||||
gopls = {
|
||||
settings = {
|
||||
gopls = {
|
||||
analyses = {
|
||||
unusedparams = true,
|
||||
},
|
||||
staticcheck = true,
|
||||
usePlaceholders = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
graphql = {},
|
||||
html = {},
|
||||
-- jdtls = {}, -- same here
|
||||
@@ -65,62 +154,184 @@ return {
|
||||
library = vim.api.nvim_get_runtime_file("", true),
|
||||
checkThirdParty = false,
|
||||
},
|
||||
-- Performance optimizations
|
||||
telemetry = { enable = false },
|
||||
hint = {
|
||||
enable = false, -- Disable hints for better performance
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
prismals = {},
|
||||
pyright = {},
|
||||
pyright = {
|
||||
settings = {
|
||||
python = {
|
||||
analysis = {
|
||||
typeCheckingMode = "basic", -- Reduce type checking for better performance
|
||||
autoImportCompletions = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
svelte = {},
|
||||
tailwindcss = {},
|
||||
-- Database servers
|
||||
sqls = {
|
||||
settings = {
|
||||
sqls = {
|
||||
connections = {
|
||||
{
|
||||
name = "PostgreSQL",
|
||||
adapter = "postgresql",
|
||||
host = "localhost",
|
||||
port = 5432,
|
||||
database = "postgres",
|
||||
username = "postgres",
|
||||
password = "",
|
||||
},
|
||||
{
|
||||
name = "MySQL",
|
||||
adapter = "mysql",
|
||||
host = "localhost",
|
||||
port = 3306,
|
||||
database = "mysql",
|
||||
username = "root",
|
||||
password = "",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
mongols = {
|
||||
settings = {
|
||||
mongols = {
|
||||
connectionString = "mongodb://localhost:27017",
|
||||
maxNumberOfProblems = 100,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for server, config in pairs(servers) do
|
||||
config.capabilities = capabilities
|
||||
lspconfig[server].setup(config)
|
||||
-- Set up all LSP servers with performance optimizations and error handling
|
||||
for server_name, server_config in pairs(servers) do
|
||||
lspconfig[server_name].setup({
|
||||
capabilities = capabilities,
|
||||
settings = server_config.settings or {},
|
||||
-- Performance optimizations
|
||||
flags = {
|
||||
debounce_text_changes = 150, -- Debounce text changes
|
||||
},
|
||||
-- Enhanced error handling and file filtering
|
||||
on_attach = function(client, bufnr)
|
||||
-- Only attach LSP if it's appropriate for this file
|
||||
if not should_attach_lsp(client, bufnr) then
|
||||
client.stop()
|
||||
return
|
||||
end
|
||||
|
||||
-- Add error handling for LSP operations
|
||||
local function safe_lsp_call(func, ...)
|
||||
local success, result = pcall(func, ...)
|
||||
if not success then
|
||||
vim.notify("LSP error: " .. tostring(result), vim.log.levels.WARN)
|
||||
return nil
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
-- Override LSP methods with error handling
|
||||
local original_request = client.request
|
||||
client.request = function(method, params, handler, bufnr)
|
||||
-- Skip requests for non-text files
|
||||
if not should_attach_lsp(client, bufnr or 0) then
|
||||
return
|
||||
end
|
||||
|
||||
-- Add timeout to prevent hanging
|
||||
local timeout_id = vim.defer_fn(function()
|
||||
if handler then
|
||||
handler(nil, { message = "LSP request timed out" })
|
||||
end
|
||||
end, 5000) -- 5 second timeout
|
||||
|
||||
-- Wrap the original request
|
||||
local wrapped_handler = handler and function(...)
|
||||
vim.loop.timer_stop(timeout_id)
|
||||
handler(...)
|
||||
end
|
||||
|
||||
return original_request(method, params, wrapped_handler, bufnr)
|
||||
end
|
||||
end,
|
||||
-- Reduce diagnostic frequency
|
||||
handlers = {
|
||||
["textDocument/publishDiagnostics"] = vim.lsp.with(
|
||||
vim.lsp.diagnostic.on_publish_diagnostics,
|
||||
{
|
||||
virtual_text = false,
|
||||
signs = true,
|
||||
underline = true,
|
||||
update_in_insert = false,
|
||||
}
|
||||
),
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
-- ✅ Correct way to setup typescript-tools
|
||||
require("typescript-tools").setup({
|
||||
-- Set up additional LSP servers that might not be in mason-lspconfig
|
||||
lspconfig.css_variables.setup({
|
||||
capabilities = capabilities,
|
||||
-- optional settings:
|
||||
-- settings = {
|
||||
-- tsserver_plugins = {},
|
||||
-- tsserver_max_memory = 4096,
|
||||
-- }
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("LspAttach", {
|
||||
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
||||
callback = function(ev)
|
||||
local opts = { buffer = ev.buf, silent = true }
|
||||
local mappings = {
|
||||
["gR"] = { "<cmd>Telescope lsp_references<CR>", "Show LSP references" },
|
||||
["gD"] = { vim.lsp.buf.declaration, "Go to declaration" },
|
||||
["gd"] = { "<cmd>Telescope lsp_definitions<CR>", "Show LSP definitions" },
|
||||
["gi"] = { "<cmd>Telescope lsp_implementations<CR>", "Show LSP implementations" },
|
||||
["gt"] = { "<cmd>Telescope lsp_type_definitions<CR>", "Show LSP type definitions" },
|
||||
["<leader>ca"] = { vim.lsp.buf.code_action, "See available code actions" },
|
||||
["<leader>rn"] = { vim.lsp.buf.rename, "Smart rename" },
|
||||
["<leader>D"] = { "<cmd>Telescope diagnostics bufnr=0<CR>", "Show buffer diagnostics" },
|
||||
["<leader>dd"] = { vim.diagnostic.open_float, "Show line diagnostics" },
|
||||
["[d"] = { vim.diagnostic.goto_prev, "Go to previous diagnostic" },
|
||||
["]d"] = { vim.diagnostic.goto_next, "Go to next diagnostic" },
|
||||
["K"] = { vim.lsp.buf.hover, "Show documentation for cursor" },
|
||||
["<leader>rs"] = { ":LspRestart<CR>", "Restart LSP" },
|
||||
}
|
||||
lspconfig.cssmodules_ls.setup({
|
||||
capabilities = capabilities,
|
||||
})
|
||||
|
||||
for key, map in pairs(mappings) do
|
||||
keymap.set("n", key, map[1], { desc = map[2], silent = true })
|
||||
-- Set up TypeScript Tools with performance optimizations and error handling
|
||||
require("typescript-tools").setup({
|
||||
settings = {
|
||||
tsserver_plugins = {},
|
||||
tsserver_file_preferences = {},
|
||||
tsserver_format_options = {},
|
||||
-- Performance optimizations
|
||||
tsserver_max_tsc_memory = 4096, -- Limit memory usage
|
||||
tsserver_experimental_enableProjectDiagnostics = false, -- Disable project diagnostics for better performance
|
||||
},
|
||||
-- Add error handling for TypeScript Tools
|
||||
on_attach = function(client, bufnr)
|
||||
if not should_attach_lsp(client, bufnr) then
|
||||
client.stop()
|
||||
return
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
-- Global LSP error handling
|
||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
||||
vim.lsp.handlers.hover,
|
||||
{ border = "rounded" }
|
||||
)
|
||||
|
||||
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
||||
vim.lsp.handlers.signature_help,
|
||||
{ border = "rounded" }
|
||||
)
|
||||
|
||||
-- Handle LSP errors gracefully
|
||||
vim.lsp.set_log_level("warn") -- Reduce log verbosity
|
||||
|
||||
-- Add autocmd to handle LSP errors
|
||||
vim.api.nvim_create_autocmd("LspAttach", {
|
||||
callback = function(args)
|
||||
local client = vim.lsp.get_client_by_id(args.data.client_id)
|
||||
if client then
|
||||
-- Add error handling for this client
|
||||
client.notify("workspace/didChangeConfiguration", {
|
||||
settings = {
|
||||
-- Add any client-specific error handling settings here
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
vim.api.nvim_create_autocmd("CursorHold", {
|
||||
buffer = ev.buf,
|
||||
callback = function()
|
||||
vim.diagnostic.open_float(nil, { focusable = false })
|
||||
end,
|
||||
})
|
||||
|
||||
vim.o.updatetime = 250
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
||||
@@ -4,6 +4,7 @@ return {
|
||||
dependencies = {
|
||||
"hrsh7th/cmp-buffer", -- source for text in buffer
|
||||
"hrsh7th/cmp-path", -- source for file system paths
|
||||
"hrsh7th/cmp-nvim-lsp", -- LSP completion source
|
||||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
-- follow latest release.
|
||||
@@ -28,6 +29,9 @@ return {
|
||||
cmp.setup({
|
||||
completion = {
|
||||
completeopt = "menu,menuone,preview,noselect",
|
||||
-- Performance optimizations
|
||||
keyword_length = 2, -- Start completion after 2 characters
|
||||
keyword_pattern = [[\%(-\?\d\+\%(\.\d\+\)\?\|\h\w*\%(-\w*\)*\)]], -- Better keyword pattern
|
||||
},
|
||||
snippet = { -- configure how nvim-cmp interacts with snippet engine
|
||||
expand = function(args)
|
||||
@@ -46,10 +50,10 @@ return {
|
||||
}),
|
||||
-- sources for autocompletion
|
||||
sources = cmp.config.sources({
|
||||
{ name = "nvim_lsp"},
|
||||
{ name = "luasnip" }, -- snippets
|
||||
{ name = "buffer" }, -- text within current buffer
|
||||
{ name = "path" }, -- file system paths
|
||||
{ name = "nvim_lsp", priority = 1000},
|
||||
{ name = "luasnip", priority = 750 }, -- snippets
|
||||
{ name = "buffer", priority = 500, keyword_length = 3 }, -- text within current buffer
|
||||
{ name = "path", priority = 250 }, -- file system paths
|
||||
}),
|
||||
|
||||
-- configure lspkind for vs-code like pictograms in completion menu
|
||||
@@ -59,6 +63,27 @@ return {
|
||||
ellipsis_char = "...",
|
||||
}),
|
||||
},
|
||||
|
||||
-- Performance optimizations
|
||||
performance = {
|
||||
debounce = 50, -- Debounce completion requests
|
||||
throttle = 100, -- Throttle completion requests
|
||||
fetching_timeout = 200, -- Timeout for fetching completions
|
||||
},
|
||||
|
||||
-- Reduce completion menu size for better performance
|
||||
window = {
|
||||
completion = {
|
||||
border = "rounded",
|
||||
scrollbar = false,
|
||||
col_offset = -3,
|
||||
side_padding = 0,
|
||||
},
|
||||
documentation = {
|
||||
border = "rounded",
|
||||
scrollbar = false,
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -73,32 +73,32 @@ return {
|
||||
|
||||
-- File Management keybindings
|
||||
vim.keymap.set("n", "a", function() -- Add a new file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.create()
|
||||
end, opts)
|
||||
|
||||
vim.keymap.set("n", "r", function() -- Rename file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.rename()
|
||||
end, opts)
|
||||
|
||||
vim.keymap.set("n", "d", function() -- Delete file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.remove()
|
||||
end, opts)
|
||||
|
||||
vim.keymap.set("n", "x", function() -- Cut (move) file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.cut()
|
||||
end, opts)
|
||||
|
||||
vim.keymap.set("n", "p", function() -- Paste file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.paste()
|
||||
end, opts)
|
||||
|
||||
vim.keymap.set("n", "y", function() -- Copy file
|
||||
vim.cmd("set modifiable") -- Ensure modifiable mode is on
|
||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
||||
api.fs.copy.node()
|
||||
end, opts)
|
||||
end,
|
||||
|
||||
27
lua/cargdev/plugins/nvim-treesitter-context.lua
Normal file
27
lua/cargdev/plugins/nvim-treesitter-context.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter-context",
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
opts = {
|
||||
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
|
||||
max_lines = 10, -- How many lines the window should span. Values <= 0 mean no limit.
|
||||
min_window_height = 0, -- Minimum editor window height to enable context. Values <= 0 mean no limit.
|
||||
line_numbers = true,
|
||||
multiline_threshold = 20, -- Maximum number of lines to show for a single context
|
||||
trim_scope = "outer", -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
|
||||
mode = "cursor", -- Line used to calculate context. Choices: 'cursor', 'topline'
|
||||
-- Separator between context and content. Should be a single character string, like '-'.
|
||||
-- When separator is set, the context will only show up when there are at least 2 lines above cursorline.
|
||||
separator = nil,
|
||||
zindex = 20, -- The Z-index of the context window
|
||||
on_attach = nil, -- (fun(buf: integer): boolean) return false to disable attaching
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("treesitter-context").setup(opts)
|
||||
|
||||
-- Optional: Add keymaps for navigating context
|
||||
vim.keymap.set("n", "[c", function()
|
||||
require("treesitter-context").go_to_context(vim.v.count1)
|
||||
end, { silent = true, desc = "Jump to context" })
|
||||
end,
|
||||
}
|
||||
17
lua/cargdev/plugins/ship.lua
Normal file
17
lua/cargdev/plugins/ship.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
return {
|
||||
"seandewar/killersheep.nvim",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim", -- Required dependency for killersheep.nvim
|
||||
},
|
||||
config = function()
|
||||
require("killersheep").setup({
|
||||
gore = true, -- Enables/disables blood and gore.
|
||||
keymaps = {
|
||||
move_left = "h", -- Keymap to move cannon to the left.
|
||||
move_right = "l", -- Keymap to move cannon to the right.
|
||||
shoot = "<Space>", -- Keymap to shoot the cannon.
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
41
lua/cargdev/plugins/sudoku.lua
Normal file
41
lua/cargdev/plugins/sudoku.lua
Normal file
@@ -0,0 +1,41 @@
|
||||
return {
|
||||
"jim-fx/sudoku.nvim",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("sudoku").setup({
|
||||
persist_settings = true, -- safe the settings under vim.fn.stdpath("data"), usually ~/.local/share/nvim,
|
||||
persist_games = true, -- persist a history of all played games
|
||||
default_mappings = true, -- if set to false you need to set your own, like the following:
|
||||
mappings = {
|
||||
{ key = "x", action = "clear_cell" },
|
||||
{ key = "r1", action = "insert=1" },
|
||||
{ key = "r2", action = "insert=2" },
|
||||
{ key = "r3", action = "insert=3" },
|
||||
{ key = "r9", action = "insert=9" },
|
||||
{ key = "gn", action = "new_game" },
|
||||
{ key = "gr", action = "reset_game" },
|
||||
{ key = "gs", action = "view=settings" },
|
||||
{ key = "gt", action = "view=tip" },
|
||||
{ key = "gz", action = "view=zen" },
|
||||
{ key = "gh", action = "view=help" },
|
||||
{ key = "u", action = "undo" },
|
||||
{ key = "<C-r>", action = "redo" },
|
||||
{ key = "+", action = "increment" },
|
||||
{ key = "-", action = "decrement" },
|
||||
},
|
||||
custom_highlights = {
|
||||
board = { fg = "#7d7d7d" },
|
||||
number = { fg = "white", bg = "black" },
|
||||
active_menu = { fg = "white", bg = "black", gui = "bold" },
|
||||
hint_cell = { fg = "white", bg = "yellow" },
|
||||
square = { bg = "#292b35", fg = "white" },
|
||||
column = { bg = "#14151a", fg = "#d5d5d5" },
|
||||
row = { bg = "#14151a", fg = "#d5d5d5" },
|
||||
settings_disabled = { fg = "#8e8e8e", gui = "italic" },
|
||||
same_number = { fg = "white", gui = "bold" },
|
||||
set_number = { fg = "white", gui = "italic" },
|
||||
error = { fg = "white", bg = "#843434" },
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
@@ -6,6 +6,7 @@ return {
|
||||
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"folke/todo-comments.nvim",
|
||||
"nvim-telescope/telescope-dap.nvim",
|
||||
},
|
||||
config = function()
|
||||
local telescope = require("telescope")
|
||||
@@ -22,9 +23,70 @@ return {
|
||||
end,
|
||||
})
|
||||
|
||||
-- File filtering function to prevent LSP errors and image freezing
|
||||
local function filter_files(entry)
|
||||
local filename = entry.filename or entry.value
|
||||
if not filename then return true end
|
||||
|
||||
-- Skip non-text files that can cause LSP errors or freezing
|
||||
local skip_extensions = {
|
||||
-- Images
|
||||
"png", "jpg", "jpeg", "gif", "svg", "ico", "bmp", "webp", "tiff", "tga",
|
||||
-- Videos
|
||||
"mp4", "avi", "mov", "wmv", "flv", "webm", "mkv", "m4v", "3gp",
|
||||
-- Audio
|
||||
"mp3", "wav", "flac", "aac", "ogg", "m4a", "wma",
|
||||
-- Documents
|
||||
"pdf", "doc", "docx", "xls", "xlsx", "ppt", "pptx", "odt", "ods", "odp",
|
||||
-- Archives
|
||||
"zip", "rar", "7z", "tar", "gz", "bz2", "xz", "lzma",
|
||||
-- Binaries
|
||||
"exe", "dll", "so", "dylib", "bin", "app", "dmg", "deb", "rpm",
|
||||
-- Other problematic files
|
||||
"lock", "log", "tmp", "temp", "cache", "bak", "backup"
|
||||
}
|
||||
|
||||
for _, ext in ipairs(skip_extensions) do
|
||||
if filename:match("%." .. ext .. "$") then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
-- Skip hidden files and directories (except .git)
|
||||
if filename:match("/%.") and not filename:match("/%.git/") then
|
||||
return false
|
||||
end
|
||||
|
||||
-- Skip node_modules and other heavy directories
|
||||
if filename:match("/node_modules/") or
|
||||
filename:match("/vendor/") or
|
||||
filename:match("/%.git/") or
|
||||
filename:match("/dist/") or
|
||||
filename:match("/build/") or
|
||||
filename:match("/target/") then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
telescope.setup({
|
||||
defaults = {
|
||||
path_display = { "smart" },
|
||||
-- Performance optimizations
|
||||
cache_picker = {
|
||||
num_pickers = -1,
|
||||
},
|
||||
-- Enhanced preview with file filtering
|
||||
preview = {
|
||||
treesitter = false, -- Disable treesitter in preview for better performance
|
||||
timeout = 100, -- Reduce preview timeout
|
||||
},
|
||||
-- Optimize sorting
|
||||
sorting_strategy = "ascending",
|
||||
-- Add file filtering to all pickers
|
||||
file_sorter = require("telescope.sorters").get_fuzzy_file,
|
||||
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
|
||||
mappings = {
|
||||
i = {
|
||||
["<C-k>"] = actions.move_selection_previous, -- move to prev result
|
||||
@@ -34,17 +96,50 @@ return {
|
||||
},
|
||||
},
|
||||
},
|
||||
pickers = {
|
||||
find_files = {
|
||||
hidden = true,
|
||||
-- Performance optimizations
|
||||
find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/*" },
|
||||
no_ignore = false,
|
||||
follow = false, -- Don't follow symlinks for better performance
|
||||
-- Add file filtering
|
||||
file_filter = filter_files,
|
||||
},
|
||||
live_grep = {
|
||||
additional_args = function()
|
||||
return { "--hidden" }
|
||||
end,
|
||||
-- Performance optimizations
|
||||
glob_pattern = { "!**/.git/*", "!**/node_modules/*", "!**/vendor/*" },
|
||||
previewer = false, -- Disable previewer for live_grep for better performance
|
||||
-- Add file filtering for grep
|
||||
file_filter = filter_files,
|
||||
},
|
||||
-- Optimize other pickers
|
||||
buffers = {
|
||||
sort_lastused = true,
|
||||
ignore_current_buffer = true,
|
||||
},
|
||||
git_files = {
|
||||
git_command = { "git", "ls-files", "--exclude-standard" },
|
||||
-- Add file filtering for git files
|
||||
file_filter = filter_files,
|
||||
},
|
||||
},
|
||||
-- Performance optimizations
|
||||
extensions = {
|
||||
fzf = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
-- Load extensions
|
||||
telescope.load_extension("fzf")
|
||||
|
||||
-- set keymaps
|
||||
local keymap = vim.keymap -- for conciseness
|
||||
|
||||
keymap.set("n", "<leader>ff", "<cmd>Telescope find_files<cr>", { desc = "Fuzzy find files in cwd" })
|
||||
keymap.set("n", "<leader>fr", "<cmd>Telescope oldfiles<cr>", { desc = "Fuzzy find recent files" })
|
||||
keymap.set("n", "<leader>fs", "<cmd>Telescope live_grep<cr>", { desc = "Find string in cwd" })
|
||||
keymap.set("n", "<leader>fc", "<cmd>Telescope grep_string<cr>", { desc = "Find string under cursor in cwd" })
|
||||
keymap.set("n", "<leader>ft", "<cmd>TodoTelescope<cr>", { desc = "Find todos" })
|
||||
telescope.load_extension("dap")
|
||||
end,
|
||||
}
|
||||
|
||||
6
lua/cargdev/plugins/termcolor.lua
Normal file
6
lua/cargdev/plugins/termcolor.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
"fei6409/log-highlight.nvim",
|
||||
config = function()
|
||||
require("log-highlight").setup({})
|
||||
end,
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
event = { "BufReadPost", "BufNewFile" }, -- Changed from BufReadPre to BufReadPost for better performance
|
||||
build = ":TSUpdate",
|
||||
dependencies = {
|
||||
"windwp/nvim-ts-autotag",
|
||||
@@ -17,6 +17,9 @@ return {
|
||||
-- Prevent Treesitter from parsing Copilot files
|
||||
return lang == "copilot" or vim.api.nvim_buf_get_name(buf):match("copilot.lua")
|
||||
end,
|
||||
-- Performance optimizations
|
||||
use_languagetree = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
-- enable indentation
|
||||
indent = { enable = true },
|
||||
@@ -58,6 +61,13 @@ return {
|
||||
node_decremental = "<bs>",
|
||||
},
|
||||
},
|
||||
-- Performance optimizations
|
||||
playground = {
|
||||
enable = false, -- Disable playground for better performance
|
||||
},
|
||||
query_linter = {
|
||||
enable = false, -- Disable query linter for better performance
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
118
lua/cargdev/plugins/ufo.lua
Normal file
118
lua/cargdev/plugins/ufo.lua
Normal file
@@ -0,0 +1,118 @@
|
||||
return {
|
||||
"kevinhwang91/nvim-ufo",
|
||||
dependencies = {
|
||||
"kevinhwang91/promise-async",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
{
|
||||
"luukvbaal/statuscol.nvim",
|
||||
config = function()
|
||||
local builtin = require("statuscol.builtin")
|
||||
require("statuscol").setup({
|
||||
relculright = true,
|
||||
segments = {
|
||||
{ text = { builtin.foldfunc }, click = "v:lua.ScFa" },
|
||||
{ text = { "%s" }, click = "v:lua.ScSa" },
|
||||
{ text = { builtin.lnumfunc, " " }, click = "v:lua.ScLa" },
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
},
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
init = function()
|
||||
vim.o.foldcolumn = "1"
|
||||
vim.o.foldlevel = 99
|
||||
vim.o.foldlevelstart = 99
|
||||
vim.o.foldenable = true
|
||||
-- Use valid Unicode characters for foldopen and foldclose
|
||||
vim.o.fillchars = [[eob: ,fold: ,foldopen:▾,foldsep: ,foldclose:▸]]
|
||||
vim.o.foldmethod = "manual"
|
||||
vim.o.foldexpr = ""
|
||||
end,
|
||||
opts = {
|
||||
open_fold_hl_timeout = 150,
|
||||
close_fold_kinds_for_ft = {
|
||||
default = { 'imports', 'comment' },
|
||||
json = { 'array' },
|
||||
c = { 'comment', 'region' },
|
||||
},
|
||||
preview = {
|
||||
win_config = {
|
||||
border = { "", "─", "", "", "", "─", "", "" },
|
||||
winhighlight = "Normal:Folded",
|
||||
winblend = 0,
|
||||
},
|
||||
mappings = {
|
||||
scrollU = "<C-u>",
|
||||
scrollD = "<C-d>",
|
||||
jumpTop = "[",
|
||||
jumpBot = "]",
|
||||
},
|
||||
},
|
||||
provider_selector = function(bufnr, filetype, buftype)
|
||||
return { "treesitter", "indent" }
|
||||
end,
|
||||
fold_virt_text_handler = function(virtText, lnum, endLnum, width, truncate)
|
||||
local newVirtText = {}
|
||||
local suffix = (" %d "):format(endLnum - lnum)
|
||||
local sufWidth = vim.fn.strdisplaywidth(suffix)
|
||||
local targetWidth = width - sufWidth
|
||||
local curWidth = 0
|
||||
for _, chunk in ipairs(virtText) do
|
||||
local chunkText = chunk[1]
|
||||
local chunkWidth = vim.fn.strdisplaywidth(chunkText)
|
||||
if targetWidth > curWidth + chunkWidth then
|
||||
table.insert(newVirtText, chunk)
|
||||
else
|
||||
chunkText = truncate(chunkText, targetWidth - curWidth)
|
||||
local hlGroup = chunk[2]
|
||||
table.insert(newVirtText, { chunkText, hlGroup })
|
||||
chunkWidth = vim.fn.strdisplaywidth(chunkText)
|
||||
if curWidth + chunkWidth < targetWidth then
|
||||
suffix = suffix .. (" "):rep(targetWidth - curWidth - chunkWidth)
|
||||
end
|
||||
break
|
||||
end
|
||||
curWidth = curWidth + chunkWidth
|
||||
end
|
||||
table.insert(newVirtText, { suffix, "MoreMsg" })
|
||||
return newVirtText
|
||||
end,
|
||||
},
|
||||
config = function(_, opts)
|
||||
local ufo = require("ufo")
|
||||
ufo.setup(opts)
|
||||
-- Keymaps are in keymaps/ufo.lua
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "lua", "python", "javascript", "typescript", "c", "cpp", "rust", "go" },
|
||||
callback = function()
|
||||
ufo.setFoldVirtTextHandler(nil, function(virtText, lnum, endLnum, width, truncate)
|
||||
local newVirtText = {}
|
||||
local suffix = (" %d "):format(endLnum - lnum)
|
||||
local sufWidth = vim.fn.strdisplaywidth(suffix)
|
||||
local targetWidth = width - sufWidth
|
||||
local curWidth = 0
|
||||
for _, chunk in ipairs(virtText) do
|
||||
local chunkText = chunk[1]
|
||||
local chunkWidth = vim.fn.strdisplaywidth(chunkText)
|
||||
if targetWidth > curWidth + chunkWidth then
|
||||
table.insert(newVirtText, chunk)
|
||||
else
|
||||
chunkText = truncate(chunkText, targetWidth - curWidth)
|
||||
local hlGroup = chunk[2]
|
||||
table.insert(newVirtText, { chunkText, hlGroup })
|
||||
chunkWidth = vim.fn.strdisplaywidth(chunkText)
|
||||
if curWidth + chunkWidth < targetWidth then
|
||||
suffix = suffix .. (" "):rep(targetWidth - curWidth - chunkWidth)
|
||||
end
|
||||
break
|
||||
end
|
||||
curWidth = curWidth + chunkWidth
|
||||
end
|
||||
table.insert(newVirtText, { suffix, "MoreMsg" })
|
||||
return newVirtText
|
||||
end)
|
||||
end,
|
||||
})
|
||||
end,
|
||||
}
|
||||
@@ -3,7 +3,7 @@ return {
|
||||
event = "VeryLazy",
|
||||
init = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 500
|
||||
vim.o.timeoutlen = 200 -- Reduced from 500 for faster response
|
||||
end,
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
|
||||
10
lua/cargdev/plugins/yaml.lua
Normal file
10
lua/cargdev/plugins/yaml.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
"cuducos/yaml.nvim",
|
||||
ft = { "yaml" }, -- optional
|
||||
dependencies = {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"folke/snacks.nvim", -- optional
|
||||
"nvim-telescope/telescope.nvim", -- optional
|
||||
"ibhagwan/fzf-lua", -- optional
|
||||
},
|
||||
}
|
||||
58
tree.log
58
tree.log
@@ -1,58 +0,0 @@
|
||||
.
|
||||
├── ftplugin
|
||||
│ └── java.lua
|
||||
├── init.lua
|
||||
├── keyboard_mappings.md
|
||||
├── kkk
|
||||
├── lazigitconfig.log
|
||||
├── lazy-lock.json
|
||||
├── lua
|
||||
│ └── cargdev
|
||||
│ ├── core
|
||||
│ │ ├── function
|
||||
│ │ │ └── openTerminal.lua
|
||||
│ │ ├── init.lua
|
||||
│ │ ├── keymaps.lua
|
||||
│ │ └── options.lua
|
||||
│ ├── lazy.lua
|
||||
│ └── plugins
|
||||
│ ├── aicargdev.lua
|
||||
│ ├── alpha.lua
|
||||
│ ├── auto-session.lua
|
||||
│ ├── autopairs.lua
|
||||
│ ├── bufferline.lua
|
||||
│ ├── buffertabs.lua
|
||||
│ ├── colorscheme.lua
|
||||
│ ├── comments.lua
|
||||
│ ├── copilot.lua
|
||||
│ ├── dap.lua
|
||||
│ ├── dressing.lua
|
||||
│ ├── formatting.lua
|
||||
│ ├── gitsigns.lua
|
||||
│ ├── indent-blankline.lua
|
||||
│ ├── init.lua
|
||||
│ ├── lazygit.lua
|
||||
│ ├── linting.lua
|
||||
│ ├── lsp
|
||||
│ │ ├── lspconfig.lua
|
||||
│ │ └── mason.lua
|
||||
│ ├── lualine.lua
|
||||
│ ├── noice.lua
|
||||
│ ├── nvim-cmp.lua
|
||||
│ ├── nvim-jdtls.lua
|
||||
│ ├── nvim-tree.lua
|
||||
│ ├── nvim-treesitter-text-objects.lua
|
||||
│ ├── substitute.lua
|
||||
│ ├── surround.lua
|
||||
│ ├── telescope.lua
|
||||
│ ├── tmux.lua
|
||||
│ ├── todo-comments.lua
|
||||
│ ├── treesitter.lua
|
||||
│ ├── trouble.lua
|
||||
│ ├── vim-maximizer.lua
|
||||
│ ├── wakatime.lua
|
||||
│ └── which-key.lua
|
||||
├── README.md
|
||||
└── tree.log
|
||||
|
||||
8 directories, 48 files
|
||||
Reference in New Issue
Block a user