Fixing missing Memtest in Bootloader. Adding customized live user nihal.

This commit is contained in:
Ananke 2024-07-20 14:55:32 +02:00
parent 57bdfa3aff
commit 96806bebf0
5 changed files with 228 additions and 22 deletions

29
vimrc
View file

@ -3,36 +3,39 @@ set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
" set rtp+=~/.vim/bundle/Vundle.vim
"set rtp+=~/.vim/bundle/Vundle.vim
"call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
#Plugin 'VundleVim/Vundle.vim'
" for installing plugin: call ':PluginInstall'
"Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
#Plugin 'tpope/vim-fugitive'
"Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
#Plugin 'git://git.wincent.com/command-t.git'
"Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
#Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
#Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
"Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
" Nerdtree
"Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
" Plugin youcompleteme
#Plugin 'git://github.com/ycm-core/YouCompleteMe.git'
"Plugin 'git://github.com/ycm-core/YouCompleteMe.git'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
"call vundle#end() " required
"filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
@ -83,8 +86,8 @@ au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
filetype plugin indent on
filetype indent on
"filetype plugin indent on
"filetype indent on
" set filetyp manually for rust -> errors?
"if &filetyp ==# 'rs'
@ -114,6 +117,10 @@ nnoremap Y "+y
vnoremap Y "+y
nnoremap yY ^"+y$
" Start NERDTree and put the cursor back in the other window.
"autocmd VimEnter * NERDTree | wincmd p
" automatically trigger copy
set guioptions+=a