-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Introduce
MDSANIMA
theme and sample function (#45)
- Loading branch information
Showing
3 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
" Copyright (c) 2023-2024 MDSANIMA DEV. All rights reserved. | ||
" Licensed under the MIT license. | ||
|
||
" This file sets up the mdsanima functions for the Neovim. | ||
" Should be called by a specific function name. | ||
|
||
|
||
" Tesging function | ||
function mdsanima#hello() | ||
echo "Hello World" | ||
endfunction |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
" Copyright (c) 2023-2024 MDSANIMA DEV. All rights reserved. | ||
" Licensed under the MIT license. | ||
|
||
" This is a color file for custom theme in Neovim. | ||
" Based on the default `pablo` vim color file. | ||
|
||
|
||
" Basic | ||
hi clear | ||
set background=dark | ||
let g:colors_name = "mdsanima" | ||
|
||
" Colors | ||
hi Boolean cterm=none ctermfg=202 ctermbg=none | ||
hi Comment cterm=none ctermfg=8 ctermbg=none | ||
hi Constant cterm=none ctermfg=222 ctermbg=none | ||
hi Directory cterm=none ctermfg=2 ctermbg=none | ||
hi Error cterm=bold ctermfg=15 ctermbg=196 | ||
hi ErrorMsg cterm=bold ctermfg=15 ctermbg=196 | ||
hi Identifier cterm=none ctermfg=24 ctermbg=none | ||
hi LineNr cterm=none ctermfg=244 ctermbg=none | ||
hi Number cterm=none ctermfg=196 ctermbg=none | ||
hi Pmenu cterm=none ctermfg=0 ctermbg=27 | ||
hi PreProc cterm=none ctermfg=48 ctermbg=none | ||
hi Search cterm=none ctermfg=16 ctermbg=9 | ||
hi Special cterm=none ctermfg=33 ctermbg=none | ||
hi SpecialChar cterm=none ctermfg=45 ctermbg=none | ||
hi Statement cterm=none ctermfg=215 ctermbg=none | ||
hi StatusLine cterm=bold ctermfg=16 ctermbg=12 | ||
hi Todo cterm=bold ctermfg=15 ctermbg=3 | ||
hi Type cterm=none ctermfg=36 ctermbg=none | ||
|
||
" Commits | ||
hi diffRemoved cterm=none ctermfg=196 ctermbg=none | ||
hi diffAdded cterm=none ctermfg=76 ctermbg=none | ||
hi diffChanged cterm=none ctermfg=202 ctermbg=none | ||
hi diffSubname cterm=none ctermfg=30 ctermbg=none | ||
hi diffOldFile cterm=none ctermfg=23 ctermbg=none | ||
hi diffNewFile cterm=none ctermfg=25 ctermbg=none |
This file contains 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