summaryrefslogtreecommitdiff
path: root/kj-laptop01/lazyvim-config.lua
diff options
context:
space:
mode:
authorKj Tsanaktsidis <kjtsanaktsidis@groq.com>2026-01-09 11:58:31 +1100
committerKj Tsanaktsidis <kjtsanaktsidis@groq.com>2026-01-09 11:58:31 +1100
commit98e94297af73c583c9636c99772b2c1c34f98743 (patch)
tree1ac244e55b6d544d556b2327308d07708350e824 /kj-laptop01/lazyvim-config.lua
parentf5686b8e377ce3ecbf617783b4f2398423cb19fd (diff)
some refactor
Diffstat (limited to 'kj-laptop01/lazyvim-config.lua')
-rw-r--r--kj-laptop01/lazyvim-config.lua49
1 files changed, 0 insertions, 49 deletions
diff --git a/kj-laptop01/lazyvim-config.lua b/kj-laptop01/lazyvim-config.lua
deleted file mode 100644
index 038ed1b..0000000
--- a/kj-laptop01/lazyvim-config.lua
+++ /dev/null
@@ -1,49 +0,0 @@
--- Store a lot of history
-vim.opt.history = 10000
--- Enable mouse support
-vim.opt.mouse = "a"
--- Line numbers
-vim.opt.number = true
--- Vim janks about a lot as the LSP floats in or out if the sign column width
--- is not fixed ahead of time.
-vim.opt.signcolumn = "yes:1"
--- don't take up the whole screen with popups
-vim.opt.pumheight = 15
--- lazy.nvim does relative line numbers
-vim.wo.relativenumber = false
--- .nvimrc files
-vim.opt.exrc = true
--- disable autoformat by default
-vim.g.autoformat = false
-vim.g.root_spec = { "cwd" }
-
---[[
-local cmp = require("cmp")
-local enabled_except_in_comments = function()
- if vim.api.nvim_get_mode().mode == "c" then
- return true
- else
- local context = require("cmp.config.context")
- return not context.in_treesitter_capture("comment") and not context.in_syntax_group("Comment")
- end
-end
-cmp.setup.filetype("markdown", {
- enabled = false,
-})
-
-for _, ft in ipairs({ "c", "cpp", "ruby" }) do
- cmp.setup.filetype(ft, {
- enabled = enabled_except_in_comments,
- })
-end
-]]--
-
-vim.api.nvim_create_user_command("DiagHide", function(args)
- vim.diagnostic.enable(false)
-end, {})
-vim.api.nvim_create_user_command("DiagShow", function(args)
- vim.diagnostic.enable(true)
-end, {})
-vim.api.nvim_create_user_command("FindRefs", function(args)
- require("telescope.builtin").lsp_references()
-end, {})