diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-05 09:30:28 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-05 09:30:35 +0530 |
commit | c1a1addb4987c6b8642df060848fd86e31fc564b (patch) | |
tree | c6fa0c7e082f9ef8c188ea7d1e5aa00253471039 /lua/plugins/opts | |
parent | 7c3ef11e2ed4e8cdefe1cb80fd4837e1eb037d6c (diff) |
fmt: set column_width to 80, sort require
Diffstat (limited to 'lua/plugins/opts')
-rw-r--r-- | lua/plugins/opts/lspconfig.lua | 2 | ||||
-rw-r--r-- | lua/plugins/opts/treesitter.lua | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lua/plugins/opts/lspconfig.lua b/lua/plugins/opts/lspconfig.lua index 583cac1..c22dfc7 100644 --- a/lua/plugins/opts/lspconfig.lua +++ b/lua/plugins/opts/lspconfig.lua @@ -1,5 +1,5 @@ -local lspconfig = require("lspconfig") local lsp_zero = require("lsp-zero") +local lspconfig = require("lspconfig") lsp_zero.extend_lspconfig() lsp_zero.set_sign_icons({ diff --git a/lua/plugins/opts/treesitter.lua b/lua/plugins/opts/treesitter.lua index ebcdf62..b9ec31a 100644 --- a/lua/plugins/opts/treesitter.lua +++ b/lua/plugins/opts/treesitter.lua @@ -27,7 +27,8 @@ return { -- disable for > 100 KB files disable = function(_, buf) local max_filesize = 100 * 1024 -- 100 KB - local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf)) + local ok, stats = + pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf)) if ok and stats and stats.size > max_filesize then return true end |