commit 0dc3ce19960dd94c2fc4d889c3499910ec0b94ef Author: samratghale Date: Sun May 10 00:31:37 2026 +0000 Add options.lua diff --git a/options.lua b/options.lua new file mode 100644 index 0000000..b574f4b --- /dev/null +++ b/options.lua @@ -0,0 +1,18 @@ +-- Options are automatically loaded before lazy.nvim startup +-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua +-- Add any additional options here +vim.opt.relativenumber = false +vim.opt.tabstop = 2 +vim.opt.shiftwidth = 2 +vim.opt.softtabstop = 2 +vim.opt.expandtab = true +vim.lsp.config("ty", { + settings = { + ty = { + -- ty language server settings go here + }, + }, +}) + +-- Required: Enable the language server +vim.lsp.enable("ty") \ No newline at end of file