1
0

plugins.lua 3.0 KB

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