Added rust modes to emacs, changed theme to one-theme, changed scripts

This commit is contained in:
TuDatTr
2021-03-02 12:23:16 +01:00
parent a56233db18
commit 4732690351
16 changed files with 105 additions and 61 deletions

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: function template
# key: /**
# --
/**
@brief $0
@param[in]
@result
*/

View File

@@ -4,6 +4,11 @@
# --
#include <stdio.h>
/**
@brief
@result
*/
int main(int argc, char *argv[]){
$0
}