plugins.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. },
  16. pickers = {
  17. buffers = {
  18. sort_lastused = true,
  19. },
  20. find_files = {
  21. find_command = { "fd", "--type", "f", "--strip-cwd-prefix" }
  22. },
  23. },
  24. })
  25. -- use native sorter for better performance
  26. require('telescope').load_extension('fzf')
  27. -- shows added/removed/changed lines
  28. require('gitsigns').setup()
  29. require('mini.statusline').setup({
  30. content = {
  31. -- copy-pasted from default, we just want to remove the icon
  32. active = function()
  33. local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
  34. local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
  35. local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
  36. local filename = MiniStatusline.section_filename({ trunc_width = 140 })
  37. local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
  38. local location = MiniStatusline.section_location({ trunc_width = 75 })
  39. return MiniStatusline.combine_groups({
  40. { hl = mode_hl, strings = { mode } },
  41. { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
  42. '%<', -- Mark general truncate point
  43. { hl = 'MiniStatuslineFilename', strings = { filename } },
  44. '%=', -- End left alignment
  45. { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
  46. { hl = mode_hl, strings = { location } },
  47. })
  48. end
  49. },
  50. })
  51. -- delete buffer while preserving layout
  52. require('mini.bufremove').setup()
  53. -- shows a line indicating the current indentation scope
  54. require('mini.indentscope').setup()
  55. -- LSP completion and function signature display
  56. require('mini.completion').setup({
  57. delay = {
  58. -- disable autocomplete
  59. completion = 100000000,
  60. info = 100,
  61. signature = 50,
  62. },
  63. lsp_completion = {
  64. source_func = 'omnifunc',
  65. auto_setup = false,
  66. },
  67. });
  68. -- Use Treesitter for syntax highlighting
  69. require('nvim-treesitter.configs').setup({
  70. highlight = {
  71. enable = true,
  72. },
  73. })