diff --git a/myconfigs/neovim/init.vim b/myconfigs/neovim/init.vim
new file mode 100644
index 0000000000000000000000000000000000000000..37d9a96694c5d8c531f320f22785d7123cc8d8fd
--- /dev/null
+++ b/myconfigs/neovim/init.vim
@@ -0,0 +1,16 @@
+:set number
+:set relativenumber
+:set mouse=a
+:set autoindent
+:set smarttab
+
+call plug#begin()
+
+Plug 'https://github.com/vim-airline/vim-airline'
+Plug 'https://github.com/hrsh7th/nvim-cmp'
+Plug 'https://github.com/someone-stole-my-name/yaml-companion.nvim'
+Plug 'https://github.com/nvim-lua/plenary.nvim'
+Plug 'https://github.com/cuducos/yaml.nvim'
+Plug 'https://github.com/nvim-tree/nvim-tree.lua'
+
+call plug#end()