Lighten line number colors
This commit is contained in:
40
init.lua
40
init.lua
@@ -11,29 +11,33 @@ require 'opt'
|
|||||||
require 'keymap'
|
require 'keymap'
|
||||||
require 'autocmd'
|
require 'autocmd'
|
||||||
require 'lazy_init'
|
require 'lazy_init'
|
||||||
|
require 'visuals'
|
||||||
|
|
||||||
require('helpers').edit_cf('v', '/init.lua')
|
require('helpers').edit_cf('v', '/init.lua')
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
TODO: Neovim configurations I want to add:
|
TODO: Neovim configurations I want to add:
|
||||||
- Clearer line numbers (weirdly not as simple as it sounds)
|
- [x] Clearer line numbers (weirdly not as simple as it sounds)
|
||||||
- Debugging keymap that works like PHPStorm
|
- [ ] Debugging keymap that works like PHPStorm
|
||||||
- Improve snippet expansion (an get rid of that stupid #endsection snippet)
|
- [ ] Improve snippet expansion (an get rid of that stupid #endsection snippet)
|
||||||
- Better organising of buffers when opening side panels (like AI chat and test summary)
|
- [ ] Better organising of buffers when opening side panels (like AI chat and test summary)
|
||||||
- Close test panel when opening debugger and vice versa using edgy
|
- [ ] Close test panel when opening debugger and vice versa using edgy
|
||||||
- Close terminal from inside terminal buffer
|
- [ ] Close terminal from inside terminal buffer
|
||||||
- Get shift key bindings working inside tmux
|
- [ ] Get shift key bindings working inside tmux
|
||||||
- Fix ctrl+shift+a keybinding for AI actions
|
- [ ] Fix ctrl+shift+a keybinding for AI actions
|
||||||
- Get VectorCode working
|
- [ ] Get VectorCode working
|
||||||
- Add LSP symbols for Pest tests
|
- [ ] Add LSP symbols for Pest tests
|
||||||
- More prompts
|
- [ ] More prompts
|
||||||
- Give AI better context and tools for working with Hylark
|
- [ ] Give AI better context and tools for working with Hylark
|
||||||
- Figure out workspaces
|
- [ ] Figure out workspaces
|
||||||
- Figure out agentic workflow
|
- [ ] Figure out agentic workflow
|
||||||
- Figure out a better way to add relevant buffers to AI
|
- [ ] Figure out a better way to add relevant buffers to AI
|
||||||
- Figure out debug expressions
|
- [ ] Better inline AI assistant
|
||||||
- Better keymaps for debug movements
|
- [ ] Keymap to copy visual selection to chat
|
||||||
- Chat history
|
- [ ] Better register management
|
||||||
|
- [ ] Figure out debug expressions
|
||||||
|
- [ ] Better keymaps for debug movements
|
||||||
|
- [ ] Chat history
|
||||||
]]
|
]]
|
||||||
|
|
||||||
-- " Auto-Commands --- {{{
|
-- " Auto-Commands --- {{{
|
||||||
|
|||||||
6
lua/visuals.lua
Normal file
6
lua/visuals.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
require('helpers').edit_cf('c', '/lua/visuals.lua')
|
||||||
|
|
||||||
|
local line_number_color = '#5d6487'
|
||||||
|
vim.cmd('highlight LineNr guifg=' .. line_number_color)
|
||||||
|
vim.cmd('highlight LineNrAbove guifg=' .. line_number_color)
|
||||||
|
vim.cmd('highlight LineNrBelow guifg=' .. line_number_color)
|
||||||
Reference in New Issue
Block a user