Skip to content

Instantly share code, notes, and snippets.

@keyle
Last active October 31, 2025 10:12
Show Gist options
  • Select an option

  • Save keyle/666c1af62d36acfa43d7142e82d2179e to your computer and use it in GitHub Desktop.

Select an option

Save keyle/666c1af62d36acfa43d7142e82d2179e to your computer and use it in GitHub Desktop.
neovim lazyvim config
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")
@keyle
Copy link
Author

keyle commented Oct 30, 2025

Ghostty options

background = 14161B
foreground = 9FB6CF
macos-option-as-alt = true
font-family = Ligalex Mono
font-size = 18

@keyle
Copy link
Author

keyle commented Oct 31, 2025

turn off parameters inline hints

    {
      "neovim/nvim-lspconfig",
      opts = {
        inlay_hints = { enabled = false },
      },
    },

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment