summaryrefslogtreecommitdiff
path: root/nvim/lua/configs.lua
blob: 92d26f7916ee70fd6ad4110d9f6c7e821c533ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
-- Plugin configurations
-- All plugin-specific settings are configured here

--------------------------------
-- TELESCOPE
--------------------------------
local function setup_telescope()
    local actions = require("telescope.actions")

    -- Function to open selected file in external program
    local function open_in_external_program(prompt_bufnr)
        local entry = require('telescope.actions.state').get_selected_entry()
        local file_path = entry.path or entry.filename
        if file_path then
            os.execute(string.format('start "" "%s"', file_path))
        else
            print("No file selected")
        end
        actions.close(prompt_bufnr)
    end

    require('telescope').setup({
        defaults = {
            layout_config = {
                vertical = { width = 0.5 }
            },
            mappings = {
                n = {
                    ["q"] = actions.close,
                    ["o"] = open_in_external_program,
                },
                i = {
                    ["<C-c>"] = actions.close,
                    ["<C-n>"] = actions.cycle_history_next,
                    ["<C-p>"] = actions.cycle_history_prev,
                    ["<C-j>"] = actions.move_selection_next,
                    ["<C-k>"] = actions.move_selection_previous,
                    ["<C-o>"] = open_in_external_program,
                }
            },
        },
        pickers = {
            live_grep = {
                file_ignore_patterns = { 'node_modules', '.git', '.venv' },
                additional_args = function(_)
                    return { "--hidden" }
                end
            },
            find_files = {
                file_ignore_patterns = { 'node_modules', '.git', '.venv' },
                hidden = true
            }
        }
    })
end

--------------------------------
-- HARPOON
--------------------------------
local function setup_harpoon()
    local harpoon = require("harpoon")
    
    -- Initialize harpoon
    harpoon:setup({
        settings = {
            save_on_toggle = true,
            sync_on_ui_close = true,
        }
    })
end

--------------------------------
-- OIL
--------------------------------
local function setup_oil()
    require("oil").setup({
        -- Default file explorer settings
        default_file_explorer = true,
        
        -- Columns to display
        columns = { "icon" },
        
        -- Buffer options
        buf_options = {
            buflisted = false,
            bufhidden = "hide",
        },
        
        -- Window options
        win_options = {
            wrap = false,
            signcolumn = "no",
            cursorcolumn = false,
            foldcolumn = "0",
            spell = false,
            list = false,
            conceallevel = 3,
            concealcursor = "nvic",
        },
        
        -- File operations
        delete_to_trash = true,
        skip_confirm_for_simple_edits = false,
        prompt_save_on_select_new_entry = true,
        cleanup_delay_ms = 2000,
        
        -- UI behavior
        constrain_cursor = "editable",
        watch_for_changes = false,
        
        -- Custom keymaps
        keymaps = {
            ["g?"] = "actions.show_help",
            ["<CR>"] = "actions.select",
            ["<C-S>"] = { "actions.select", opts = { vertical = true } },
            ["<C-H>"] = { "actions.select", opts = { horizontal = true } },
            ["<C-p>"] = "actions.preview",
            ["<C-c>"] = "actions.close",
            ["<C-l>"] = "actions.refresh",
            ["-"] = "actions.parent",
            ["_"] = "actions.open_cwd",
            ["`"] = "actions.cd",
            ["~"] = { "actions.cd", opts = { scope = "tab" } },
            ["gs"] = "actions.change_sort",
            ["<C-o>"] = "actions.open_external",
            ["g."] = "actions.toggle_hidden",
            ["g\\"] = "actions.toggle_trash",
            ['yp'] = {
                desc = 'Copy filepath to system clipboard',
                callback = function ()
                    require('oil.actions').copy_entry_path.callback()
                    vim.fn.setreg("+", vim.fn.getreg(vim.v.register))
                end,
            },
        },
        
        -- Disable default keymaps
        use_default_keymaps = false,
        
        -- View options
        view_options = {
            show_hidden = false,
            natural_order = true,
            case_insensitive = false,
            sort = {
                { "type", "asc" },
                { "name", "asc" },
            },
        },
        
        -- Preview window settings
        preview = {
            max_width = 0.9,
            min_width = { 40, 0.4 },
            max_height = 0.9,
            min_height = { 5, 0.1 },
            border = "rounded",
            win_options = { winblend = 0 },
        },
        
        -- Floating window settings
        float = {
            padding = 2,
            max_width = 0,
            max_height = 0,
            border = "rounded",
            win_options = { winblend = 0 },
        },
    })
end

--------------------------------
-- TOGGLETERM
--------------------------------
local function setup_toggleterm()
    require("toggleterm").setup({
        -- Shell to use in the terminal
        shell = "pwsh.exe -NoLogo",
        
        -- Display options
        direction = "float",
        float_opts = {
            border = "rounded",
        },
        
        -- Window appearance
        winbar = {
            enabled = false
        },
        
        -- Behavior
        start_in_insert = true,
        close_on_exit = true,
        
        -- Integration with tmux
        persist_size = true,
        persist_mode = true,
    })
end

--------------------------------
-- TREESITTER
--------------------------------
local function setup_treesitter()
    require('nvim-treesitter.configs').setup({
        ensure_installed = { "c", "lua", "vim", "vimdoc", "cpp", "python" },
        sync_install = false,
        auto_install = false,
        highlight = { enable = true },
        indent = { enable = true },
    })
end

--------------------------------
-- COMMENTS
--------------------------------
local function setup_comments()
    require('Comment').setup({
        padding = true,
        sticky = true,
        ignore = nil,
        toggler = {
            line = '<leader>/',
            block = 'gbc',
        },
        opleader = {
            line = '<leader>/',
            block = 'gb',
        }
    })
end

--------------------------------
-- LSP Configuration
--------------------------------
local function setup_lsp()
    -- Configure Mason LSP installer/manager
    require('mason').setup({
        ensure_installed = {
            'lua_ls',       -- Lua
            'clangd',       -- C/C++
            'pyright',      -- Python
            'marksman',     -- Markdown
        },
        handlers = {
            -- Lua LSP settings
            lua_ls = function()
                require('lspconfig').lua_ls.setup({})
            end,
            
            -- C/C++ LSP settings (clangd)
            clangd = function()
                require('lspconfig').clangd.setup({})
            end,
            
            -- Markdown LSP settings
            marksman = function()
                require('lspconfig').marksman.setup({})
            end,
        }
    })
    require("mason-lspconfig").setup {}

    -- Configure diagnostics appearance
    vim.diagnostic.config({
        virtual_lines=true,
        signs = true,
        underline = true,
        update_in_insert = false,
        severity_sort = true,
    })
end

--------------------------------
-- INITIALIZE ALL CONFIGS
--------------------------------

-- Set up all plugin configurations
setup_telescope()
setup_harpoon()
setup_oil()
setup_toggleterm()
setup_treesitter()
setup_comments()
setup_lsp()
Back to https://optics-design.com