about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-dired.el
Commit message (Expand)AuthorAgeFilesLines
* Accomodate new casual collection organisationDavid Morgan2024-10-231-1/+2
* Add some improvements from jamescherti/minimal-emacs.dDavid Morgan2024-09-251-0/+2
* Set dired-vc-rename-fileDavid Morgan2024-06-181-0/+1
* Add casual-dired and other bindingsDavid Morgan2024-06-131-1/+9
* Try out straightDavid Morgan2022-10-101-4/+2
* Remove uneeded darwin/dired configDavid Morgan2022-05-311-2/+0
* Add new .emacs.dDavid Morgan2021-08-171-0/+29
ll no optimal solution, I need to think about it, considering recursive algorithm for the space optimization' href='/acidbong/suckless/dwm/commit/config.mk?h=5.8.2&id=ea8a4ca46a9577997e0a3f30e211c644477c6a00'>ea8a4ca ^
1d72938 ^

f22d047 ^
1076f2b
14f7380 ^
f22d047 ^
1076f2b
7b5638f ^
f22d047 ^
91e902f ^



d7e1708 ^
71fd06f ^


71fd06f ^
95766d6 ^
1076f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
             
               


                                    

                   




                               
                                     

                                     
 
                   
                                     
                                                       
 
       
                                                    



                                                             
 


                                                
 
                     
       
# dwm version
VERSION = 5.7.1

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# Xinerama, un-comment if you want it
XINERAMALIBS = -L${X11LIB} -lXinerama
XINERAMAFLAGS = -DXINERAMA

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}

# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
#LDFLAGS = -g ${LIBS}
LDFLAGS = -s ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}

# compiler and linker
CC = cc