Giter Site home page Giter Site logo

dotfiles's Introduction

Steve Kemp

  • I've been programming for over half my life, I'm comfortable creating, developing, maintaining, and improving software written in C, C++, Emacs Lisp, Perl, Ruby, Java, Shell, TCL, etc.
    • Most of my new projects are written in Golang.
    • But also I've been writing code in Z80 assembly language, to run under CP/M and the humble ZX Spectrum 48k.
  • My interests primarily revolve around compilers, interpreters, domain-specific languages, and virtual machines.
  • Location: Helsinki, Finland.
  • Occupation: Sysadmin / Devops / Cloud-person.
Github Activity

dotfiles's People

Contributors

markus2330 avatar skx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

markus2330 qiangf

dotfiles's Issues

org-mode is the future

Since I can do more interesting things with it than my home-made markdown parse we should seriously consider loading org-mode init file(s), instead of the init.md file.

Process both to test migration. At the very least I want to test removing ~/.emacs.d/setup which should be trivial ...

readme in home?

Just a question? To have a redme on your bare repo, did you have to bloat your $HOME with the readme file? I can't seem to find a way for alternative readme location, other than root...

Better support for our bundled modes

Most of the bundled modes are included in config.org, but not all of them.

  1. Place all of them there, resyncing appropriately.
  2. Look and see if there's a better solution. git submodules suck, and fetching a single file from a repo is probably not much better than using curl / wget, but this should still be a solved problem.

org-auto-tag

Cute idea - get a list of all tags in a document

(defun get-all-tags ()
  "Return the (lowercase) list of tags used within this file.  Tags are returned in random order, however duplicates are removed."

  (let ((all-tags '()))
    (org-map-entries
      (lambda ()
        (let ((tag-string (car (last (org-heading-components)))))
          (when tag-string
           (setq all-tags (append all-tags (split-string tag-string ":" t)))))))
    (delete-dups all-tags)))

If the current headline has those words - add the tags!

;;(message "%d tags" (length (get-all-tags)))

(defun org-auto-tag ()
  (interactive)
  (let ((alltags (get-all-tags))
        (headline-words (split-string (downcase (org-get-heading t t))))
       )
    (mapcar (lambda (word) (if (member word alltags)
                             (org-toggle-tag word 'on)))
            headline-words))
    ) (org-auto-tag)

For bonus points add as a hook to org-todo-state-changed

(add-hook 'org-after-todo-state-change-hook 'org-auto-tag)

Drop groovy-mode

This is useful for people forced to use jenkins, but that's no longer the case for me. :D

Move LSP stuff around

We have a config for go-mode and a seperate setup for LSP - move the latter into the former, and rationalize the python LSP setup too.

org-setup via use-package

I tried this in the past, but my config is a bit spread out.

  • Load org-mode with use-package
  • Move all the org-settings into one place.
  • PDF export can probably be dropped, if necessary.
  • Ensure the org-diary mode still works.
  • No need for defer, since I use org "immediately".

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.