summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorJustanothercatgirl <sotov2070@gmail.com>2023-09-24 13:24:56 +0300
committerJustanothercatgirl <sotov2070@gmail.com>2023-09-24 13:24:56 +0300
commitdf65e6f8e328e1116a931873e003b75c97f17a30 (patch)
treead02db19020d193c9df8e750aa00eb2056655858 /.config
initial state (started tracking dotfiles)
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/init.vim27
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
new file mode 100644
index 0000000..cca2f5f
--- /dev/null
+++ b/.config/nvim/init.vim
@@ -0,0 +1,27 @@
+:set number
+:set autoindent
+:set tabstop=8
+:set shiftwidth=4 "this sets tabulation width!
+:set smarttab
+:set nowrap
+
+let g:python3_host_prog = '~/.config/nvim/python3/bin/python'
+" let g:python_host_prog = '/usr/bin/python'
+
+call plug#begin()
+
+Plug 'https://github.com/vim-airline/vim-airline' " status bar
+Plug 'https://github.com/preservim/nerdtree' " file manager
+Plug 'https://github.com/tpope/vim-surround' " cs\"' (cnahge surroundings)
+Plug 'https://github.com/tpope/vim-commentary' " comment and uncomment
+Plug 'https://github.com/rafi/awesome-vim-colorschemes' " themes, basically
+Plug 'https://github.com/ryanoasis/vim-devicons' " icons for some plugins?????
+Plug 'https://github.com/terryma/vim-multiple-cursors' " this is gonna be tough to learn...
+Plug 'ycm-core/YouCompleteMe' " autocompletion (REQUIRES PYTHON3 VENV)
+
+nnoremap <C-f> :NERDTreeFocus<CR>
+
+call plug#end()
+
+:colo evening
+