2022-09-24 23:15:25 +02:00
|
|
|
;;; +keybindings.el -*- lexical-binding: t; -*-
|
|
|
|
;; Custom keybindings
|
|
|
|
;;
|
2022-10-26 15:15:53 +02:00
|
|
|
;; Keybindings for next/previous buffer
|
2022-11-24 13:22:33 +01:00
|
|
|
(map! :n "C-c j" #'previous-buffer)
|
|
|
|
(map! :n "C-c k" #'next-buffer)
|