summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugin_settings.lua
blob: bff9bcba2257bedb4d6629ac71471e032e6baa15 (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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
-- ┌─────────────────────────────────────┐
-- │   ▜                ▐  ▐  ▗          │
-- │▛▀▖▐ ▌ ▌▞▀▌▗▖▖▞▀▘▞▀▖▜▀ ▜▀ ▄ ▛▀▖▞▀▌▞▀▘│
-- │▙▄▘▐ ▌ ▌▚▄▌▘▝ ▝▀▖▛▀ ▐ ▖▐ ▖▐ ▌ ▌▚▄▌▝▀▖│
-- │▌   ▘▝▀▘▗▄▘   ▀▀ ▝▀▘ ▀  ▀ ▀▘▘ ▘▗▄▘▀▀ │
-- └─────────────────────────────────────┘

local g = vim.g -- global for let options
local opt = vim.opt -- convenient :set
local cmd = vim.cmd -- vim commands

-- vimwiki {{{ --
g.vimwiki_list = {
    {
        path = '/home/yigit/nextcloud/personal_wiki/text',
        path_html = '/home/yigit/nextcloud/personal_wiki/html',
        auto_generate_tags = 1,
        automatic_nested_syntaxes = 1,
        template_path = '/home/yigit/nextcloud/personal_wiki/templates',
        template_default = 'default_template',
        template_ext = '.html',
        auto_export = 1,
        auto_tags = 1
    }
}

g.vimwiki_global_ext = 0
g.vimwiki_hl_headers = 1
-- }}} vimwiki --

-- lualine {{{ --

local function lualine_spell()
    if vim.wo.spell then
        return "spell"
    else
        return
    end
end

-- Grinds vim to a halt
local function lualine_tex_wordcount()
    return vim.fn['vimtex#misc#wordcount']() .. " ‽"
end

local conditions = {
    spell_on = function ()
        return vim.wo.spell
    end,
    filetype_is_tex = function()
        return vim.bo.filetype == "tex"
    end
}


require'lualine'.setup {
    options = {
        icons_enabled = true,
        theme = 'rose-pine',
        section_separators = { left = '', right = '' },
        component_separators = { left = '', right = '' },
    },
    sections = {
        lualine_a = {{'mode', fmt = string.lower}},
        lualine_b = {'branch', 'diff', {
            lualine_spell,
            cond = conditions.spell_on,
        }},
        lualine_c = {'filename'},
        lualine_x = {'encoding', 'fileformat', 'filetype'},
        lualine_y = {'progress'},
        lualine_z = {
            'location', {
                'diagnostics',
                sources = {'nvim_lsp'},
                sections = {'error', 'warn', 'info', 'hint'},
                symbols = {error = 'e', warn = 'w', info = 'i', hint = 'h'}
            }
        }
    },
    inactive_sections = {
        lualine_a = {},
        lualine_b = {},
        lualine_c = {'filename'},
        lualine_x = {},
        lualine_y = {},
        lualine_z = {}
    },
    tabline = {
        lualine_a = {'buffers'},
        lualine_b = {},
        lualine_c = {},
        lualine_x = {},
        lualine_y = {},
        lualine_z = {'tabs'}
    },
    extensions = {}
}

-- }}} lualine --

-- cutlass suite {{{ --

-- cutlass/yoink/subverse suite
g.yoinkIncludeDeleteOperations = 1

-- fix the Target STRING not available
g.clipboard = {
    name = 'xsel_override',
    copy = {
        ['+'] = 'xsel --input --clipboard',
        ['*'] = 'xsel --input --primary',
    },
    paste = {
        ['+'] = 'xsel --output --clipboard',
        ['*'] = 'xsel --output --primary',
    },
    cache_enabled = 1,
}

-- }}} cutlass suite --

-- UltiSnips {{{ --
g.UltiSnipsEditSplit = "vertical"
-- ctrl + l expands the snippet, c + j/k navigates placeholders
g.UltiSnipsExpandTrigger = "<C-l>"
g.UltiSnipsEnableSnipMate = "1"
g.UltiSnipsSnippetDirectories = {"my_snippets", "UltiSnips"}
-- }}} UltiSnips --

-- beacon {{{ --
g.beacon_size = 100
g.beacon_shrink = 1
cmd('highlight Beacon guibg=red ctermbg=15')
-- }}} beacon --

-- vimtex {{{ --
g.vimtex_view_method = 'zathura'
g.vimtex_quickfix_mode = 0
-- }}} vimtex --

-- filetype.nvim {{{ --
require('filetype').setup({
    overrides = {
        literal = {
            PKGBUILD = 'PKGBUILD',
        },
    }
})
-- }}} filetype.nvim --

-- tagbar {{{ --
g.tagbar_autofocus = 1
g.tagbar_compact = 1
g.tagbar_sort = 0
g.tagbar_width = 25
-- }}} tagbar --

-- ledger {{{ --
g.ledger_maxwidth = 80
g.ledger_fillstring = '   -'
-- }}} ledger --

-- devicons {{{ --
require'nvim-web-devicons'.setup {
    override = {
        wiki = {
            icon  = "",
            color = "#D7827E",
            name  = "vimwiki"
        },
        rem = {
            icon  = "",
            color = "#B4637A",
            name  = "remind"
        },
        mail = {
            icon  = "",
            color = "#907AA9",
            name  = "mail"
        },
    };

    default = true
}
-- }}}  devicons --

-- vim-slime {{{ --
g.slime_target = "tmux"
g.slime_paste_file = "$HOME/.slime_paste"
g.slime_default_config = {socket_name = vim.call("get", vim.call("split", vim.env.TMUX, ','), "0"), target_pane = "{last}"}
-- }}} vim-slime --

-- gutentags {{{ --
g.gutentags_enabled = 1
g.gutentags_add_default_project_roots = 0
g.gutentags_project_root = {'Makefile', '.git'}
g.gutentags_exclude_filetypes = {'gitcommit', 'gitconfig', 'gitrebase', 'gitsendemail', 'git'}
g.gutentags_generate_on_new = 1
g.gutentags_generate_on_missing = 1
g.gutentags_generate_on_write = 1
g.gutentags_generate_on_empty_buffer = 0
g.gutentags_ctags_exclude = {
    '*.git', '*.svn', '*.hg',
    'cache', 'build', 'dist', 'bin', 'node_modules', 'bower_components',
    '*-lock.json',  '*.lock',
    '*.min.*',
    '*.bak',
    '*.zip',
    '*.pyc',
    '*.class',
    '*.sln',
    '*.csproj', '*.csproj.user',
    '*.tmp',
    '*.cache',
    '*.vscode',
    '*.pdb',
    '*.exe', '*.dll', '*.bin',
    '*.mp3', '*.ogg', '*.flac',
    '*.swp', '*.swo',
    '.DS_Store', '*.plist',
    '*.bmp', '*.gif', '*.ico', '*.jpg', '*.png', '*.svg',
    '*.rar', '*.zip', '*.tar', '*.tar.gz', '*.tar.xz', '*.tar.bz2',
    '*.pdf', '*.doc', '*.docx', '*.ppt', '*.pptx', '*.xls',
}
-- }}} gutentags --

-- telescope {{{ --
require('telescope').setup {
  extensions = {
    fzf = {
      fuzzy = true,                    -- false will only do exact matching
      override_generic_sorter = true,  -- override the generic sorter
      override_file_sorter = true,     -- override the file sorter
      case_mode = "smart_case",        -- or "ignore_case" or "respect_case"
                                       -- the default case_mode is "smart_case"
    }
  }
}

require('telescope').load_extension('fzf')
-- }}} telescope --

-- dashboard {{{ --
g.dashboard_default_executive   = 'telescope'
g.dashboard_preview_command     = 'cat'
g.dashboard_preview_file        = '~/.config/nvim/neovim.cat'
g.dashboard_preview_file_height = 13
g.dashboard_preview_file_width  = 90
g.dashboard_footer_icon         = '💃 '

g.dashboard_custom_shortcut = {
    last_session       = '<leader> s l',
    find_history       = '<leader> f h',
    find_file          = '<leader> f f',
    new_file           = '<leader> c n',
    change_colorscheme = '<leader> t c',
    find_word          = '<leader> f a',
    book_marks         = '<leader> f b',
}

-- }}}  dashboard --

-- treesitter {{{ --

require 'nvim-treesitter.configs'.setup {
    ensure_installed = "maintained",
    highlight = {
        enable = true,
        additional_vim_regex_highlighting = false,
    },
    incremental_selection = {
        enable = true,
        keymaps = {
            init_selection = "gnn",
            node_incremental = "grn",
            scope_incremental = "grc",
            node_decremental = "grm",
        },
    },
    indent = {
        enable = true
    }
}
-- }}} treesitter --

-- nvim-cmp {{{ --
local cmp = require'cmp'

cmp.setup({
    snippet = {
        expand = function(args)
            vim.fn["UltiSnips#Anon"](args.body)
        end,
    },
    mapping = {
        ['<C-d>'] = cmp.mapping.scroll_docs(-4),
        ['<C-f>'] = cmp.mapping.scroll_docs(4),
        ['<C-Space>'] = cmp.mapping.complete(),
        ['<C-e>'] = cmp.mapping.close(),
        ['<C-l>'] = cmp.mapping.confirm({ select = true }),
    },
    sources = {
        { name = 'nvim_lsp' },
        { name = 'ultisnips' },
        { name = 'buffer' },
    }
})

-- }}} nvim-cmp --

-- nvim-lsp {{{ --
local nvim_lsp = require('lspconfig')

local on_attach = function(client, bufnr)
    local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
    local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end

    -- Enable completion triggered by <c-x><c-o>
    buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc')

    -- Mappings.
    local opts = { noremap=true, silent=true }

    -- See `:help vim.lsp.*` for documentation on any of the below functions
    buf_set_keymap('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
    buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
    buf_set_keymap('n', 'vh', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
    buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
    buf_set_keymap('n', 'gh', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
    buf_set_keymap('n', '<leader>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>', opts)
    buf_set_keymap('n', '<leader>wd', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>', opts)
    buf_set_keymap('n', '<leader>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>', opts)
    buf_set_keymap('n', '<leader>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
    buf_set_keymap('n', '<leader>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
    buf_set_keymap('n', '<leader>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
    buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
    buf_set_keymap('n', '<leader>d', '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>', opts)
    buf_set_keymap('n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
    buf_set_keymap('n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
    buf_set_keymap('n', '<leader>q', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
    buf_set_keymap('n', '<leader>f', '<cmd>lua vim.lsp.buf.formatting()<CR>', opts)
end

local servers = { 'rust_analyzer', 'jedi_language_server', 'texlab', 'clangd' }
for _, lsp in ipairs(servers) do
    nvim_lsp[lsp].setup {
        on_attach = on_attach,
        flags = {
            debounce_text_changes = 150,
        },
        capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
    }
end

-- }}} nvim-lsp --

-- vista {{{ --
g.vista_icon_indent = {"╰ ", "│ "}
-- }}} vista --

-- float-preview.nvim {{{ --
g["float_preview#docked"] = 0
-- }}} float-preview.nvim --

-- indent-blankline {{{ --
vim.opt.list = true

require("indent_blankline").setup {
    show_current_context = true,
    char = "┊",
    buftype_exclude = {"terminal"},
    filetype_exclude = {"dashboard", "help", "ledger", "man"}
}
-- }}} indent-blankline --

-- nvim-autopairs {{{ --

require('nvim-autopairs').setup({
    disable_filetype = { "TelescopePrompt" },
})

local cmp_autopairs = require('nvim-autopairs.completion.cmp')
local cmp = require('cmp')
cmp.event:on( 'confirm_done', cmp_autopairs.on_confirm_done())

local Rule = require('nvim-autopairs.rule')
local npairs = require('nvim-autopairs')

npairs.add_rule(Rule('%"','%"',"remind"))

-- }}} nvim-autopairs --

-- nvim-tree {{{ --

require'nvim-tree'.setup {
    disable_netrw       = true,
    hijack_netrw        = true,
    open_on_setup       = false,
    ignore_ft_on_setup  = {},
    -- closes neovim automatically when the tree is the last **WINDOW** in the view
    auto_close          = true,
    open_on_tab         = false,
    -- hijacks new directory buffers when they are opened.
    update_to_buf_dir   = {
        -- enable the feature
        enable = true,
        -- allow to open the tree if it was previously closed
        auto_open = true,
    },
    -- hijack the cursor in the tree to put it at the start of the filename
    hijack_cursor       = false,
    -- updates the root directory of the tree on `DirChanged` (when your run `:cd` usually)
    update_cwd          = true,
    -- show lsp diagnostics in the signcolumn
    diagnostics = {
        enable = false,
        icons = {
            hint = "❔",
            info = "❕",
            warning = "❗",
            error = "❌",
        }
    },
    -- update the focused file on `BufEnter`, un-collapses the folders recursively until it finds the file
    update_focused_file = {
        -- enables the feature
        enable      = false,
        -- update the root directory of the tree to the one of the folder containing the file if the file is not under the current root directory
        update_cwd  = false,
        -- list of buffer names / filetypes that will not update the cwd if the file isn't found under the current root directory
        ignore_list = {}
    },
    -- configuration options for the system open command (`s` in the tree by default)
    system_open = {
        -- the command to run this, leaving nil should work in most cases
        cmd  = nil,
        -- the command arguments as a list
        args = {}
    },

  view = {
    -- width of the window, can be either a number (columns) or a string in `%`, for left or right side placement
    width = 30,
    -- height of the window, can be either a number (columns) or a string in `%`, for top or bottom side placement
    height = 30,
    -- side of the tree, can be one of 'left' | 'right' | 'top' | 'bottom'
    side = 'left',
    -- if true the tree will resize itself after opening a file
    auto_resize = false,
    mappings = {
      -- custom only false will merge the list with the default mappings
      -- if true, it will only use your list to set the mappings
      custom_only = false,
      -- list of mappings to set on the tree manually
      list = {}
    }
  }
}
-- }}} nvim-tree --

-- nvim-colorizer {{{ --
require 'colorizer'.setup()
-- }}} nvim-colorizer --