mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
- Move all language LSP configurations to `nvim/lsp` - Move nvim LSP configurations to `nvim/lua/core` - Remove LSP attach keymaps where default ones exists and are usable - Reorged LSP attach keymaps per plugin - Move Lazy.nvim configurations to `nvim/lua/core` - `nvim/init.lua` cleaned to only load other files - Uniform diagnostics symbols across lualine & gutter
19 lines
648 B
Lua
19 lines
648 B
Lua
-- TIP: General Usage and debugging Nvim hints:
|
|
-- Use `vim.print()` to printout variables
|
|
-- :lua > `require("plugin-name")` to load a plugin manually
|
|
-- To check all issues in plugins -> :checkhealth
|
|
-- To check all the keymaps -> :Telescope keymaps
|
|
-- Check all notifications -> :Notifications
|
|
-- Check past messages -> :messages
|
|
-- Select last visual selection -> gv
|
|
-- Copy visual section to a line number -> :'<,'>t15 (copies To line 15)
|
|
|
|
-- Load keymaps & options
|
|
-- Order matters
|
|
require("config.options")
|
|
require("config.keymaps")
|
|
require("core.lazy")
|
|
require("core.lsp")
|
|
require("config.filetype-based-keymaps")
|
|
require("config.autocmd")
|