diff --git a/nvim/cheatsheet.txt b/nvim/cheatsheet.txt index b152e90..bbf3a50 100644 --- a/nvim/cheatsheet.txt +++ b/nvim/cheatsheet.txt @@ -13,3 +13,7 @@ Toggles the comment state of the selected line(s) individually | [count] ## cheatsheet @custom: Shows a searchable list of all keybindings | ? + +## Term @custom +Opens a normal interactive terminal | +Opens lazygit | g diff --git a/nvim/init.lua b/nvim/init.lua index 004c47a..1a9687e 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -71,4 +71,5 @@ autocmd CursorHold * lua vim.diagnostic.open_float(nil, { focusable = false }) -- Enable filetype plugins vim.cmd("filetype plugin on") +vim.g.mapleader = "," require("plugins") diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index ac65e77..0be2d42 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -37,14 +37,24 @@ require("lazy").setup({ require("barbar-config") end, }, - "nvim-treesitter/nvim-treesitter", + { "nvim-treesitter/nvim-treesitter", enabled = false }, { "neovim/nvim-lspconfig", -- Configurations for Nvim LSP init = function() require("nvim-lsp-config") end, }, - "simrat39/rust-tools.nvim", + { + "simrat39/rust-tools.nvim", + opts = { + on_attach = function(_, bufnr) + -- Hover actions + vim.keymap.set("n", "", rt.hover_actions.hover_actions, { buffer = bufnr }) + -- Code action groups + vim.keymap.set("n", "a", rt.code_action_group.code_action_group, { buffer = bufnr }) + end, + }, + }, "preservim/nerdcommenter", -- (batch)commenting tool { "m4xshen/autoclose.nvim", @@ -53,9 +63,6 @@ require("lazy").setup({ "lukas-reineke/indent-blankline.nvim", { "EdenEast/nightfox.nvim", -- themeing - init = function() - vim.cmd("colorscheme carbonfox") - end, opts = { options = { styles = { @@ -66,21 +73,14 @@ require("lazy").setup({ }, }, }, + { + "catppuccin/nvim", + name = "catppuccin", + priority = 1000, + }, "lukas-reineke/virt-column.nvim", -- thin bar indicating an arbitray character limit { "nvim-telescope/telescope.nvim", -- fuzzy file finder - opts = { - pickers = { - find_files = { - -- `hidden = true` will still show the inside of `.git/` as it's not `.gitignore`d. - -- find_command = { "rg", "--files", "--hidden", "--no-ignore", "--glob", "!**/.git/*" }, - -- find_command = { "fd" }, - }, - }, - }, - init = function() - require("telescope-config") - end, }, { "hrsh7th/nvim-cmp", @@ -100,8 +100,10 @@ require("lazy").setup({ }, { "mhartington/formatter.nvim", + --opts = require("formatter-config").build(), config = function() opts = require("formatter-config").build() + require("formatter").setup(opts) end, }, @@ -113,6 +115,40 @@ require("lazy").setup({ "nvim-lua/plenary.nvim", }, }, + { + "akinsho/toggleterm.nvim", + version = "*", + opts = { + direction = "float", + }, + config = function(_, opts) + local Terminal = require("toggleterm.terminal").Terminal + local lazygit = Terminal:new({ cmd = "lazygit", hidden = true, direction = "float" }) + + function _lazygit_toggle() + lazygit:toggle() + end + + require("toggleterm").setup(opts) + end, + }, + { + "folke/which-key.nvim", + event = "VeryLazy", + init = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + end, + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }, + config = function(_, opts) + require("which-key-config") + require("which-key").setup(opts) + end, + }, }) local augroup = vim.api.nvim_create_augroup @@ -123,19 +159,6 @@ autocmd("BufWritePost", { command = ":FormatWrite", }) -local rt = require("rust-tools") - -rt.setup({ - server = { - on_attach = function(_, bufnr) - -- Hover actions - vim.keymap.set("n", "", rt.hover_actions.hover_actions, { buffer = bufnr }) - -- Code action groups - vim.keymap.set("n", "a", rt.code_action_group.code_action_group, { buffer = bufnr }) - end, - }, -}) - -- LSP Diagnostics Options Setup local sign = function(opts) vim.fn.sign_define(opts.name, { @@ -163,3 +186,11 @@ vim.cmd([[ set signcolumn=yes autocmd CursorHold * lua vim.diagnostic.open_float(nil, { focusable = false }) ]]) + +vim.cmd("colorscheme catppuccin") + +--vim.api.nvim_create_autocmd({ "VimLeave" }, { +--callback = function() +--vim.cmd("close") +--end, +--}) diff --git a/nvim/lua/telescope-config.lua b/nvim/lua/telescope-config.lua deleted file mode 100644 index 35b1fd4..0000000 --- a/nvim/lua/telescope-config.lua +++ /dev/null @@ -1,6 +0,0 @@ -local builtin = require("telescope.builtin") - -vim.keymap.set("n", "ff", builtin.find_files, {}) -vim.keymap.set("n", "fg", builtin.live_grep, {}) -vim.keymap.set("n", "fb", builtin.buffers, {}) -vim.keymap.set("n", "fh", builtin.help_tags, {}) diff --git a/nvim/lua/which-key-config.lua b/nvim/lua/which-key-config.lua new file mode 100644 index 0000000..3ff905e --- /dev/null +++ b/nvim/lua/which-key-config.lua @@ -0,0 +1,37 @@ +local wk = require("which-key") + +wk.register({ + f = { + "Telescope - Finder", + f = { + "Telescope find_files", + "Find File", + }, + g = { + "Telescope live_grep", + "Live Grep", + }, + b = { + "Telescope buffers", + "Find Open Buffers", + }, + h = { + "Telescope help_tags", + "Find Help", + }, + }, + n = { + "Terminal", + b = { + "lua _lazygit_toggle()", + "Open Lazygit", + }, + j = { + "ToggleTerm", + "Open Terminal", + }, + }, + c = { + "NerdCommenter", + }, +}, { prefix = "" })