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
// License: Apache-2.0 / MIT | |
use bevy::{ | |
core_pipeline::clear_color::ClearColorConfig, | |
prelude::*, | |
render::{camera::RenderTarget, render_resource::*, view::RenderLayers}, | |
}; | |
fn main() { | |
App::new() |
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
" Theme: Spacedust | |
" Source: https://gist.github.com/Helaxious/6861267116b9de6fdec030b670ab012d | |
let s:version = '0.9.x' | |
" Note on navigating this source code: | |
" - Use folding feature to collapse/uncollapse blocks of marked code | |
" zM to fold all markers in this file to see the structure of the source code | |
" zR to unfold all recursively | |
" za to toggle a fold |
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
syntax on | |
noremap j gj | |
noremap k gk | |
noremap <Up> gk | |
noremap <Down> gj | |
imap <silent> <Down> <C-o>gj | |
imap <silent> <Up> <C-o>gk |