From 573066d74e9ac58377863e215abd061ba10ed6ab Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Fri, 1 Mar 2024 07:36:14 +0530 Subject: plugins: init --- lua/plugins/opts/lualine.lua | 16 ++++++++++++++++ lua/plugins/opts/misc.lua | 19 +++++++++++++++++++ lua/plugins/opts/treesitter.lua | 24 ++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 lua/plugins/opts/lualine.lua create mode 100644 lua/plugins/opts/misc.lua create mode 100644 lua/plugins/opts/treesitter.lua (limited to 'lua/plugins/opts') diff --git a/lua/plugins/opts/lualine.lua b/lua/plugins/opts/lualine.lua new file mode 100644 index 0000000..e72c632 --- /dev/null +++ b/lua/plugins/opts/lualine.lua @@ -0,0 +1,16 @@ +return { + sections = { + lualine_a = { "mode" }, + lualine_b = { "branch", "diff" }, + lualine_c = {{ "buffers", mode = 2 }}, + + lualine_x = {}, + lualine_y = { "diagnostics", "progress" }, + lualine_z = {}, + }, + + options = { + component_separators = "", + section_separators = "", + }, +} diff --git a/lua/plugins/opts/misc.lua b/lua/plugins/opts/misc.lua new file mode 100644 index 0000000..952dc4f --- /dev/null +++ b/lua/plugins/opts/misc.lua @@ -0,0 +1,19 @@ +local M = {} +local maps = require "plugins.maps" + +M.gitsigns = { + signs = { + add = { text = "+" }, + change = { text = "~" }, + delete = { text = "-" }, + topdelete = { text = "‾" }, + changedelete = { text = "~" }, + untracked = { text = "│" }, + }, + + on_attach = function(bufnr) + maps.load("gitsigns", { buffer = bufnr }) + end, +} + +return M diff --git a/lua/plugins/opts/treesitter.lua b/lua/plugins/opts/treesitter.lua new file mode 100644 index 0000000..c9f9a59 --- /dev/null +++ b/lua/plugins/opts/treesitter.lua @@ -0,0 +1,24 @@ +return { + ensure_installed = { "lua", "c", "bash"}, + sync_install = false, + indent = { enable = true }, + + highlight = { + enable = true, + use_languagetree = true, + -- Setting this to true will run `:h syntax` and tree-sitter at the same time. + -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). + -- Using this option may slow down your editor, and you may see some duplicate highlights. + -- Instead of true it can also be a list of languages + additional_vim_regex_highlighting = false, + + -- 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)) + if ok and stats and stats.size > max_filesize then + return true + end + end, + }, +} -- cgit v1.2.3