From 0dc3ce19960dd94c2fc4d889c3499910ec0b94ef Mon Sep 17 00:00:00 2001 From: samratghale Date: Sun, 10 May 2026 00:31:37 +0000 Subject: [PATCH] Add options.lua --- options.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 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