From a583da367b89a9a34529fb334dd0192ed827b2a9 Mon Sep 17 00:00:00 2001 From: Burak Date: Mon, 13 Jan 2025 13:34:54 +0100 Subject: [PATCH 1/3] New plugins added --- init.lua | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index ed50b69d7f3..5ec2024a662 100644 --- a/init.lua +++ b/init.lua @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false vim.o.number = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! --- vim.o.relativenumber = true +vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.o.mouse = 'a' @@ -255,6 +255,19 @@ rtp:prepend(lazypath) -- -- NOTE: Here is where you install your plugins. require('lazy').setup({ + -- BURAK PLUGINS Here + + { + 'nvim-neo-tree/neo-tree.nvim', + branch = 'v3.x', + dependencies = { + 'nvim-lua/plenary.nvim', + 'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended + 'MunifTanjim/nui.nvim', + -- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information + }, + }, + -- NOTE: Plugins can be added via a link or github org/name. To run setup automatically, use `opts = {}` { 'NMAC427/guess-indent.nvim', opts = {} }, From 01ead10e77b40eba8fcf75e607110c167cecb735 Mon Sep 17 00:00:00 2001 From: mta_burak Date: Tue, 6 May 2025 17:22:20 +0200 Subject: [PATCH 2/3] Update --- init.lua | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5ec2024a662..05e6c380aa8 100644 --- a/init.lua +++ b/init.lua @@ -256,7 +256,52 @@ rtp:prepend(lazypath) -- NOTE: Here is where you install your plugins. require('lazy').setup({ -- BURAK PLUGINS Here - + { + 'hat0uma/csvview.nvim', + ---@module "csvview" + ---@type CsvView.Options + opts = { + parser = { comments = { '#', '//' } }, + keymaps = { + -- Text objects for selecting fields + textobject_field_inner = { 'if', mode = { 'o', 'x' } }, + textobject_field_outer = { 'af', mode = { 'o', 'x' } }, + -- Excel-like navigation: + -- Use and to move horizontally between fields. + -- Use and to move vertically between rows and place the cursor at the end of the field. + -- Note: In terminals, you may need to enable CSI-u mode to use and . + jump_next_field_end = { '', mode = { 'n', 'v' } }, + jump_prev_field_end = { '', mode = { 'n', 'v' } }, + jump_next_row = { '', mode = { 'n', 'v' } }, + jump_prev_row = { '', mode = { 'n', 'v' } }, + }, + }, + cmd = { 'CsvViewEnable', 'CsvViewDisable', 'CsvViewToggle' }, + }, + { + 'benlubas/molten-nvim', + version = '^1.0.0', -- use version <2.0.0 to avoid breaking changes + build = ':UpdateRemotePlugins', + init = function() + -- this is an example, not a default. Please see the readme for more configuration options + vim.g.molten_output_win_max_height = 12 + end, + }, + { + 'rbong/vim-flog', + lazy = true, + cmd = { 'Flog', 'Flogsplit', 'Floggit' }, + dependencies = { + 'tpope/vim-fugitive', + }, + }, + { + 'windwp/nvim-autopairs', + event = 'InsertEnter', + config = true, + -- use opts = {} for passing setup options + -- this is equivalent to setup({}) function + }, { 'nvim-neo-tree/neo-tree.nvim', branch = 'v3.x', From cfe15656da402e854a02c30718717768feab6615 Mon Sep 17 00:00:00 2001 From: Burak <63854390+colakburak@users.noreply.github.com> Date: Tue, 17 Mar 2026 16:25:42 +0100 Subject: [PATCH 3/3] Update init.lua --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 05e6c380aa8..f3453f63bf7 100644 --- a/init.lua +++ b/init.lua @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false vim.o.number = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! -vim.opt.relativenumber = true +vim.o.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.o.mouse = 'a'