This commit is contained in:
Thorn Avery 2021-04-09 12:23:23 +12:00
parent c7b4423732
commit b3b4cbe5ef
2 changed files with 16 additions and 10 deletions

View File

@ -2,11 +2,11 @@
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1601282935,
"narHash": "sha256-WQAFV6sGGQxrRs3a+/Yj9xUYvhTpukQJIcMbIi7LCJ4=",
"lastModified": 1617631617,
"narHash": "sha256-PARRCz55qN3gy07VJZIlFeOX420d0nGF0RzGI/9hVlw=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "588973065fce51f4763287f0fda87a174d78bf48",
"rev": "b2c27d1a81b0dc266270fa8aeecebbd1807fc610",
"type": "github"
},
"original": {
@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1603758576,
"narHash": "sha256-xKFmWVx+rFInBao3gtmvXcd0LjHD1+0c1Ef5PJDrbuM=",
"lastModified": 1617808887,
"narHash": "sha256-zXye++UlrWGhfRo01sg/ldE60MZYnhda/HK5Jaa7F7g=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1dc37370c489b610f8b91d7fdd40633163ffbafd",
"rev": "d1183f3dc44b9ee5134fcbcd45555c48aa678e93",
"type": "github"
},
"original": {
@ -59,11 +59,11 @@
"slimv-src": {
"flake": false,
"locked": {
"lastModified": 1600894996,
"narHash": "sha256-5HCyyBXoA/esoTYlFBX/5vxQ7LK/w+rcXoAc6gQ5WCs=",
"lastModified": 1617654210,
"narHash": "sha256-ui8feAAKe5+m8WxFZFvMp3dnAN8dA/O/4MXHUo0wr6E=",
"owner": "kovisoft",
"repo": "slimv",
"rev": "6dfc46912655ab629634d021e9c5b0bd27023417",
"rev": "de657dd6e124189143589a725ae85113c09eb053",
"type": "github"
},
"original": {

View File

@ -6,8 +6,8 @@ customPlugins: self: super: {
pathogen = {
knownPlugins = super.vimPlugins // (customPlugins super);
pluginNames = [
"vim-racket"
"rainbow-vim"
"vim-racket"
"vimwiki"
"slimv"
];
@ -20,6 +20,12 @@ customPlugins: self: super: {
filetype indent on
syntax on
if has("autocmd")
au BufReadPost *.rkt,*.rktl set filetype=racket
au filetype racket set lisp
au filetype racket set autoindent
endif
set encoding=utf-8