From 621fd66083586b43f9d939ca3c8c91caa3e39f2c Mon Sep 17 00:00:00 2001 From: He4eT Date: Sun, 24 Aug 2025 15:31:16 +0200 Subject: [PATCH] nvim: stylua --- nvim/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/init.lua b/nvim/init.lua index 8f9a17a..cb982b0 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -45,7 +45,7 @@ vim.keymap.set({ 'n', 'v' }, '', '', { silent = true }) --[[ cfg_options: See `:help vim.o` ]] -- Disable Intro (:intro) -vim.opt.shortmess:append('I') +vim.opt.shortmess:append 'I' -- Raise a dialog asking if you wish to save the current file(s) vim.o.confirm = true @@ -480,7 +480,7 @@ require('lazy').setup({ { -- https://github.com/vuejs/language-tools/wiki/Neovim languages = { 'vue' }, - location = vim.fn.stdpath('data') .. '/mason/packages/vue-language-server/node_modules/@vue/language-server', + location = vim.fn.stdpath 'data' .. '/mason/packages/vue-language-server/node_modules/@vue/language-server', name = '@vue/typescript-plugin', }, },