diff --git a/.bashrc b/.bashrc index 8fd0949..8dff42d 100644 --- a/.bashrc +++ b/.bashrc @@ -20,7 +20,7 @@ alias ls='exa -al' alias mutt='neomutt' alias m='neomutt' alias shutdown='sudo shutdown -h now' -alias v='vim' +alias v='nvim' alias r='ranger' alias t='sudo timeshift --list' alias ts='~/dotfiles/scripts/snapshot.sh' diff --git a/1-install.sh b/1-install.sh index b422c3c..24a1e6d 100755 --- a/1-install.sh +++ b/1-install.sh @@ -12,7 +12,7 @@ echo "START INSTALLATION..." # Install required packages # ------------------------------------------------------ echo "-> Install main packages" -sudo pacman -S alacritty scrot nitrogen picom starship chromium slock neomutt rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator +sudo pacman -S alacritty scrot nitrogen picom starship chromium slock neomutt neovim rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator # ------------------------------------------------------ # Install required packages @@ -39,6 +39,7 @@ ln -s ~/dotfiles/ranger/ ~/.config ln -s ~/dotfiles/rofi/ ~/.config ln -s ~/dotfiles/spotifyd/ ~/.config ln -s ~/dotfiles/vim/ ~/.config +ln -s ~/dotfiles/nvim/ ~/.config ln -s ~/dotfiles/starship/starship.toml ~/.config/starship.toml rm ~/.bashrc ln -s ~/dotfiles/.bashrc ~/.bashrc diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..addfb82 --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,24 @@ +set nocompatible " disable compatibility to old-time vi +set showmatch " show matching +set ignorecase " case insensitive +set mouse=v " middle-click paste with +set hlsearch " highlight search +set incsearch " incremental search +set tabstop=4 " number of columns occupied by a tab +set softtabstop=4 " see multiple spaces as tabstops so does the right thing +set expandtab " converts tabs to white space +set shiftwidth=4 " width for autoindents +set autoindent " indent a new line the same amount as the line just typed +set number " add line numbers +set wildmode=longest,list " get bash-like tab completions +" set cc=80 " set an 80 column border for good coding style +filetype plugin indent on "allow auto-indenting depending on file type +syntax on " syntax highlighting +set mouse=a " enable mouse click +set clipboard=unnamedplus " using system clipboard +filetype plugin on +" set cursorline " highlight current cursorline +set ttyfast " Speed up scrolling in Vim +" set spell " enable spell check (may need to download language package) +" set noswapfile " disable creating swap file +" set backupdir=~/.cache/vim " Directory to store backup files. diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index f430fab..6e208da 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ