plugins.lua 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. -- file/buffer/etc picker
  2. require('telescope').setup({
  3. defaults = {
  4. mappings = {
  5. i = {
  6. ['jj'] = 'close',
  7. ['<C-j>'] = 'move_selection_next',
  8. ['<C-k>'] = 'move_selection_previous',
  9. },
  10. },
  11. layout_config = {
  12. prompt_position = 'top',
  13. },
  14. sorting_strategy = 'ascending',
  15. -- use filename as preview window title
  16. dynamic_preview_title = true,
  17. },
  18. pickers = {
  19. buffers = {
  20. sort_lastused = true,
  21. sort_mru = true,
  22. },
  23. find_files = {
  24. find_command = { "fd", "--type", "f", "--strip-cwd-prefix" }
  25. },
  26. },
  27. })
  28. -- use native sorter for better performance
  29. require('telescope').load_extension('fzf')
  30. -- custom picker to fallback to files if no git
  31. local telescope_builtin = require('telescope.builtin')
  32. _G.project_files = function()
  33. local opts = {}
  34. local ok = pcall(telescope_builtin.git_files, opts)
  35. if not ok then telescope_builtin.find_files(opts) end
  36. end
  37. -- shows added/removed/changed lines
  38. require('gitsigns').setup()
  39. require('mini.statusline').setup({
  40. content = {
  41. -- copy-pasted from default, we just want to remove the icon
  42. active = function()
  43. local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
  44. local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
  45. local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
  46. local filename = MiniStatusline.section_filename({ trunc_width = 140 })
  47. local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
  48. local location = MiniStatusline.section_location({ trunc_width = 75 })
  49. return MiniStatusline.combine_groups({
  50. { hl = mode_hl, strings = { mode } },
  51. { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
  52. '%<', -- Mark general truncate point
  53. { hl = 'MiniStatuslineFilename', strings = { filename } },
  54. '%=', -- End left alignment
  55. { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
  56. { hl = mode_hl, strings = { location } },
  57. })
  58. end
  59. },
  60. })
  61. -- delete buffer while preserving layout
  62. require('mini.bufremove').setup()
  63. -- shows a line indicating the current indentation scope
  64. require('mini.indentscope').setup()
  65. -- comment actions
  66. require('mini.comment').setup()
  67. -- LSP completion and function signature display
  68. require('mini.completion').setup({
  69. delay = {
  70. -- disable autocomplete
  71. completion = 100000000,
  72. info = 100,
  73. signature = 50,
  74. },
  75. lsp_completion = {
  76. source_func = 'omnifunc',
  77. auto_setup = false,
  78. },
  79. });
  80. -- Use Treesitter for syntax highlighting
  81. require('nvim-treesitter.configs').setup({
  82. highlight = {
  83. enable = true,
  84. },
  85. textobjects = {
  86. select = {
  87. enable = true,
  88. keymaps = {
  89. ['i,'] = '@parameter.inner',
  90. ['a,'] = '@parameter.outer',
  91. },
  92. },
  93. swap = {
  94. enable = true,
  95. swap_next = {
  96. ['>,'] = '@parameter.inner',
  97. },
  98. swap_previous = {
  99. ['<,'] = '@parameter.inner',
  100. },
  101. },
  102. },
  103. })