├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.org ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.org ├── custom.el ├── early-init-private.el ├── early-init.el ├── images ├── borgholm-castle.jpg └── roadsign.jpg ├── init.el ├── private.el └── screenshots ├── git_gutter.png ├── magit_spellcheck.png ├── main2.png ├── replace.png ├── thesaurus.png └── word_definition.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [freetonik] 2 | patreon: rakhim 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/CHANGELOG.org -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/README.org -------------------------------------------------------------------------------- /custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/custom.el -------------------------------------------------------------------------------- /early-init-private.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/early-init-private.el -------------------------------------------------------------------------------- /early-init.el: -------------------------------------------------------------------------------- 1 | ;; For Emacs 27 and above 2 | (setq package-enable-at-startup nil) 3 | -------------------------------------------------------------------------------- /images/borgholm-castle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/images/borgholm-castle.jpg -------------------------------------------------------------------------------- /images/roadsign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/images/roadsign.jpg -------------------------------------------------------------------------------- /init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/init.el -------------------------------------------------------------------------------- /private.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/private.el -------------------------------------------------------------------------------- /screenshots/git_gutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/git_gutter.png -------------------------------------------------------------------------------- /screenshots/magit_spellcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/magit_spellcheck.png -------------------------------------------------------------------------------- /screenshots/main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/main2.png -------------------------------------------------------------------------------- /screenshots/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/replace.png -------------------------------------------------------------------------------- /screenshots/thesaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/thesaurus.png -------------------------------------------------------------------------------- /screenshots/word_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freetonik/castlemacs/HEAD/screenshots/word_definition.png --------------------------------------------------------------------------------