about summary refs log tree commit diff stats
path: root/config/config.go
Commit message (Expand)AuthorAgeFilesLines
* config: fix code formattingRobin Jarry2021-12-111-11/+11
* binds: add account specific bindingsJonathan Bartlett2021-12-111-53/+153
* style: customize vertical and horizontal border charactersDian M Fay2021-11-301-0/+32
* notmuch: allow sort by file orderKalyan Sriram2021-11-131-22/+27
* messages: allow displaying email threadsy0ast2021-11-131-0/+1
* index: add this-week-time-formatRobin Jarry2021-11-061-0/+2
* go.mod: change base git urlRobin Jarry2021-11-051-1/+1
* index: allow dynamic formatting of message datesRobin Jarry2021-10-281-2/+6
* load config: do not overwrite the config upon errorReto Brunner2021-04-171-8/+9
* config: proper error handle [filters] configwagner riffel2021-04-121-1/+4
* correct permission check on accounts.confBor Grošelj Simić2021-01-141-2/+1
* update tcell to v2 and enable TrueColor supporty0ast2020-12-181-1/+1
* compose: use a proper header instead of a string mapReto Brunner2020-11-141-1/+3
* Check account's from value is not emptyAndrew Jeffery2020-11-131-0/+3
* Apply relevant msglist styles in orderChris Vittal2020-11-011-0/+9
* Add account alias configuration and correctly set From fieldy0ast2020-08-201-0/+3
* Implement style configuration.Kalyan Sriram2020-08-061-6/+60
* Revert "Implement style configuration."Reto Brunner2020-07-301-49/+6
* Implement style configuration.Kalyan Sriram2020-07-301-6/+49
* run go fmtReto Brunner2020-07-171-1/+1
* Add a 'folders-exclude' optionARaspiK2020-07-021-0/+5
* Revert "Add Style configuration"Drew DeVault2020-05-281-57/+6
* Add Style configurationReto Brunner2020-05-271-6/+57
* Changing aerc.conf delimiter parsing to use only =, and not : as wellBen Cohen2020-04-291-2/+6
* Add postpone commandJeffas2020-04-241-4/+6
* Add pinned tabsJeffas2020-03-091-0/+2
* config: Strongly type context typeReto Brunner2020-01-241-4/+7
* Contextual UI ConfigurationSrivathsan Murali2020-01-241-10/+100
* Fix handling of multiple template-dirsBen Burwell2020-01-241-3/+3
* Add address book completion in composerBen Burwell2019-12-211-2/+3
* Show textinput completions in popoversBen Burwell2019-12-211-15/+20
* Add custom sorting for foldersMichele Finotto2019-12-091-0/+1
* Add some defaults for template optionsDrew DeVault2019-11-101-1/+9
* Add Templates with ParsingSrivathsan Murali2019-11-101-9/+35
* Config for deleting message from message viewerSrivathsan Murali2019-09-201-24/+26
* Add sorting functionalityJeffas2019-09-201-0/+1
* Add signaturesJeffas2019-09-121-0/+2
* Add display of unread messages in dirlistJeffas2019-09-111-3/+4
* Allow custom spinner via config filePaul Spooren2019-08-301-0/+5
* Pass os stdin to credential commandJonas Mueller2019-08-121-0/+1
* Ring bell when new messages arrive 0.2.0Ben Burwell2019-07-291-0/+2
* Print errors from config load issues.Reto Brunner2019-07-291-3/+3
* Support configurable header layout in compose widgetDaniel Bridges2019-07-261-1/+15
* Add new-email triggerJeffas2019-07-261-0/+11
* Add :cp alias for :copyDrew DeVault2019-07-171-2/+2
* Add option to always show mimetype in viewerJeffas2019-07-171-4/+5
* Display user specified headers in viewer if presentDaniel Bridges2019-07-171-1/+25
* Add MouseEnabled config settingJeffas2019-07-171-0/+2
* 71: Allow user to change config options at runtimePedro L. Ramos2019-07-151-50/+59
* Don't bind $noinheritEyal Sawady2019-07-111-0/+1
id='n526' href='#n526'>526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806