Last active
October 31, 2025 10:12
-
-
Save keyle/666c1af62d36acfa43d7142e82d2179e to your computer and use it in GitHub Desktop.
neovim lazyvim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require("config.lazy") | |
| require("lspconfig").dartls.setup({ | |
| cmd = { "/Users/n/fvm/default/bin/dart", "language-server", "--protocol=lsp" }, | |
| }) | |
| -- remove relative numbers | |
| -- vim.opt.relativenumber = false | |
| -- turn off auto suggestions | |
| vim.g.codeium_enabled = false | |
| vim.g.copilot_enabled = false | |
| vim.cmd.colorscheme("default") | |
| -- remove > for tabs and make them 8 wide | |
| vim.opt.listchars = { tab = " " } | |
| vim.opt.tabstop = 8 | |
| -- theme overrides, remove backgrounds | |
| vim.cmd([[hi Normal guibg=NONE ctermbg=NONE]]) | |
| vim.cmd([[hi NormalNC guibg=NONE ctermbg=NONE]]) | |
| vim.cmd([[hi NvimTreeNormal guibg=NONE ctermbg=NONE]]) | |
| vim.cmd([[hi SignColumn guibg=NONE ctermbg=NONE]]) | |
| -- turn off animations | |
| vim.g.snacks_animate = false | |
| -- require("catppuccin").setup() | |
| -- vim.cmd.colorscheme("catppuccin-mocha") |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
turn off parameters inline hints