This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; aelobdog's emacs configuration | |
(setq-default evil-escape-key-sequence "jk") | |
(setq-default evil-escape-delay 0.2) | |
;; some stuff that I don't really get | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) | |
(setq inhibit-startup-screen t) | |
(setq ring-bell-function 'ignore) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Single file lua config for neovim | |
------------------------------------ | |
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities()) | |
require('packer').startup(function(use) | |
-- packages installed | |
use 'wbthomason/packer.nvim' | |
use 'KabbAmine/yowish.vim' | |
use 'itchyny/lightline.vim' | |
use 'ziglang/zig.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; aelobdog's emacs configuration | |
(setq-default evil-escape-key-sequence "jk") | |
(setq-default evil-escape-delay 0.2) | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) | |
(setq inhibit-startup-screen t) | |
(setq ring-bell-function 'ignore) | |
(set-frame-font "Jetbrains Mono-13" t) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- mod-version:1 -- lite-xl 1.16 | |
----------------------------------------------------------------------- | |
-- NAME : Simple | |
-- DESCRIPTION: A simple guide on how to make your first LiteXL plugin | |
-- AUTHOR : Ashwin Godbole (aelobdog) | |
-- GOALS : To render some text inside the editor | |
----------------------------------------------------------------------- | |
-- Disclaimer : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#define NOBUILD_IMPLEMENTATION | |
#include "./my_nobuild.h" | |
#include <stdlib.h> | |
#define CFLAGS "-Wall -Wextra -std=c89 -pedantic" | |
char* getAllCFiles() { | |
const char** fileList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef NOBUILD_H_ | |
#define NOBUILD_H_ | |
#ifndef _WIN32 | |
# define _POSIX_C_SOURCE 200809L | |
# include <sys/types.h> | |
# include <sys/wait.h> | |
# include <sys/stat.h> | |
# include <unistd.h> | |
# include <dirent.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- mod-version:1 -- lite-xl 1.16 | |
-- NAME : helloworld | |
-- GOAL : to render some text to the top right corner of the editor. | |
-- import the lite-xl "core" package | |
local core = require "core" | |
local command = require "core.command" | |
local style = require "core.style" | |
local config = require "core.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader = " " | |
let g:loaded_matchparen=1 | |
set clipboard=unnamedplus | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set number | |
set belloff=all | |
set noshowmode |