plugins.lua 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 ok = pcall(telescope_builtin.git_files, { show_untracked = true })
  34. if not ok then telescope_builtin.find_files({}) end
  35. end
  36. -- shows added/removed/changed lines
  37. require('gitsigns').setup()
  38. require('mini.statusline').setup({
  39. content = {
  40. -- copy-pasted from default, we just want to remove the icon
  41. active = function()
  42. local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
  43. local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
  44. local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
  45. local filename = MiniStatusline.section_filename({ trunc_width = 140 })
  46. local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
  47. local location = MiniStatusline.section_location({ trunc_width = 75 })
  48. return MiniStatusline.combine_groups({
  49. { hl = mode_hl, strings = { mode } },
  50. { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
  51. '%<', -- Mark general truncate point
  52. { hl = 'MiniStatuslineFilename', strings = { filename } },
  53. '%=', -- End left alignment
  54. { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
  55. { hl = mode_hl, strings = { location } },
  56. })
  57. end
  58. },
  59. })
  60. -- delete buffer while preserving layout
  61. require('mini.bufremove').setup()
  62. -- shows a line indicating the current indentation scope
  63. require('mini.indentscope').setup()
  64. -- comment actions
  65. require('mini.comment').setup()
  66. -- LSP completion and function signature display
  67. require('mini.completion').setup({
  68. delay = {
  69. -- disable autocomplete
  70. completion = 100000000,
  71. info = 100,
  72. signature = 50,
  73. },
  74. lsp_completion = {
  75. source_func = 'omnifunc',
  76. auto_setup = false,
  77. },
  78. });
  79. -- Use Treesitter for syntax highlighting
  80. require('nvim-treesitter.configs').setup({
  81. highlight = {
  82. enable = true,
  83. },
  84. textobjects = {
  85. select = {
  86. enable = true,
  87. keymaps = {
  88. ['i,'] = '@parameter.inner',
  89. ['a,'] = '@parameter.outer',
  90. },
  91. },
  92. swap = {
  93. enable = true,
  94. swap_next = {
  95. ['>,'] = '@parameter.inner',
  96. },
  97. swap_previous = {
  98. ['<,'] = '@parameter.inner',
  99. },
  100. },
  101. },
  102. })