From 337ac1c32da0026196d31c9f2b70efeb977ea904 Mon Sep 17 00:00:00 2001 From: Nydragon <6582485n@proton.me> Date: Wed, 15 May 2024 05:02:27 +0900 Subject: [PATCH] feat: add gitsigns, todo-comments, incline and more - add related operations to whichkey - add shfmt to formatter.nvim - use system clipboard --- nvim/init.lua | 2 ++ nvim/lua/formatter-config.lua | 8 ++++-- nvim/lua/incline-config.lua | 51 +++++++++++++++++++++++++++++++++++ nvim/lua/plugins.lua | 35 +++++++++++++++++++++++- nvim/lua/which-key-config.lua | 42 +++++++++++++++++++++++++++++ 5 files changed, 135 insertions(+), 3 deletions(-) create mode 100644 nvim/lua/incline-config.lua diff --git a/nvim/init.lua b/nvim/init.lua index 275e0bd..c49d236 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -75,4 +75,6 @@ vim.cmd("filetype plugin on") vim.g.mapleader = " " +vim.api.nvim_set_option("clipboard", "unnamedplus") + require("plugins") diff --git a/nvim/lua/formatter-config.lua b/nvim/lua/formatter-config.lua index 31fde6b..19dbe78 100644 --- a/nvim/lua/formatter-config.lua +++ b/nvim/lua/formatter-config.lua @@ -9,8 +9,6 @@ local function prettier() args = { "--stdin-filepath", util.escape_path(util.get_current_buffer_file_path()), - "--tab-width", - "4", }, stdin = true, try_node_modules = true, @@ -58,6 +56,9 @@ local function build() javascript = { prettier, }, + yaml = { + prettier, + }, fish = { require("formatter.filetypes.fish").fishindent, }, @@ -67,6 +68,9 @@ local function build() toml = { require("formatter.filetypes.toml").taplo, }, + sh = { + require("formatter.filetypes.sh").shfmt, + }, ["*"] = { require("formatter.filetypes.any").remove_trailing_whitespace, }, diff --git a/nvim/lua/incline-config.lua b/nvim/lua/incline-config.lua new file mode 100644 index 0000000..785a39b --- /dev/null +++ b/nvim/lua/incline-config.lua @@ -0,0 +1,51 @@ +local devicons = require("nvim-web-devicons") +require("incline").setup({ + render = function(props) + local filename = vim.fn.fnamemodify(vim.api.nvim_buf_get_name(props.buf), ":t") + if filename == "" then + filename = "[No Name]" + end + local ft_icon, ft_color = devicons.get_icon_color(filename) + + local function get_git_diff() + local icons = { removed = "", changed = "", added = "" } + local signs = vim.b[props.buf].gitsigns_status_dict + local labels = {} + if signs == nil then + return labels + end + for name, icon in pairs(icons) do + if tonumber(signs[name]) and signs[name] > 0 then + table.insert(labels, { icon .. signs[name] .. " ", group = "Diff" .. name }) + end + end + if #labels > 0 then + table.insert(labels, { "┊ " }) + end + return labels + end + + local function get_diagnostic_label() + local icons = { error = "", warn = " ", info = " ", hint = "" } + local label = {} + + for severity, icon in pairs(icons) do + local n = #vim.diagnostic.get(props.buf, { severity = vim.diagnostic.severity[string.upper(severity)] }) + if n > 0 then + table.insert(label, { icon .. n .. " ", group = "DiagnosticSign" .. severity }) + end + end + if #label > 0 then + table.insert(label, { "┊ " }) + end + return label + end + + return { + --{ get_diagnostic_label() }, + --{ get_git_diff() }, + { (ft_icon or "") .. " ", guifg = ft_color, guibg = "none" }, + { filename .. " ", gui = vim.bo[props.buf].modified and "bold,italic" or "bold" }, + } + end, +}) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 08935ae..ac38d67 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -44,7 +44,7 @@ require("lazy").setup({ { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", - enabled = false, + enabled = true, }, { "neovim/nvim-lspconfig", -- Configurations for Nvim LSP @@ -141,6 +141,39 @@ require("lazy").setup({ require("toggleterm").setup(opts) end, }, + { + "lewis6991/gitsigns.nvim", + opts = {}, + }, + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = {}, + }, + { + "nvim-lualine/lualine.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = { options = { globalstatus = true } }, + }, + { + "folke/trouble.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = { + position = "right", + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }, + }, + { + "b0o/incline.nvim", + config = function() + require("incline").setup() + require("incline-config") + end, + -- Optional: Lazy load Incline + event = "VeryLazy", + }, { "folke/which-key.nvim", event = "VeryLazy", diff --git a/nvim/lua/which-key-config.lua b/nvim/lua/which-key-config.lua index 29fe557..384684e 100644 --- a/nvim/lua/which-key-config.lua +++ b/nvim/lua/which-key-config.lua @@ -4,6 +4,7 @@ wk.register({ t = { ["1"] = { "BufferGoto 1", + "Go to Buffer 1", }, d = { "BufferClose", @@ -28,6 +29,14 @@ wk.register({ "Telescope help_tags", "Find Help", }, + i = { + "Telescope builtin", + "Search all Telescope builtins", + }, + t = { + "TodoTelescope ", + "Open Todo in Telescope", + }, }, n = { "Terminal", @@ -47,4 +56,37 @@ wk.register({ "lua vim.lsp.buf.rename()", "Rename a token", }, + x = { + x = { + "TroubleToggle", + "Open Trouble", + }, + w = { + "TroubleToggle workspace_diagnostics", + "", + }, + d = { + "TroubleToggle document_diagnostics", + "", + }, + q = { + "TroubleToggle quickfix", + "", + }, + l = { + "TroubleToggle loclist", + "", + }, + r = { + "TroubleToggle lsp_references", + "", + }, + }, }, { prefix = "" }) + +wk.register({ + ["/"] = { + "Telescope current_buffer_fuzzy_find", + "Search for a string in the current buffer", + }, +})