Compare commits
2 commits
0f5d98e657
...
d229f4924c
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d229f4924c | ||
![]() |
63a0fe64da |
2 changed files with 13 additions and 5 deletions
|
@ -26,7 +26,7 @@
|
|||
neoformat
|
||||
|
||||
# Colorscheme
|
||||
papercolor-theme
|
||||
monokai-pro-nvim
|
||||
|
||||
# Filebrowser
|
||||
nvim-tree-lua
|
||||
|
@ -67,9 +67,6 @@
|
|||
# Session management
|
||||
auto-session
|
||||
|
||||
# zoom into windows
|
||||
zoomwintab-vim
|
||||
|
||||
# Telescope
|
||||
plenary-nvim
|
||||
telescope-nvim
|
||||
|
@ -79,6 +76,9 @@
|
|||
|
||||
# Add/change surrounding characters
|
||||
nvim-surround
|
||||
|
||||
# better undo history
|
||||
undotree
|
||||
];
|
||||
|
||||
extraConfig = ''
|
||||
|
@ -88,7 +88,7 @@
|
|||
set background=dark
|
||||
set number
|
||||
set laststatus=2
|
||||
colorscheme PaperColor
|
||||
colorscheme monokai-pro-octagon
|
||||
set hlsearch
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
|
@ -115,6 +115,10 @@
|
|||
nnoremap <silent><cr> :nohlsearch<CR>
|
||||
inoremap jj <Esc>
|
||||
|
||||
nnoremap <leader>n :NvimTreeToggle<CR>
|
||||
|
||||
nnoremap <leader>u :UndotreeToggle<CR>
|
||||
|
||||
" Faster tab switching
|
||||
map <Tab> :bnext<cr>
|
||||
map <S-Tab> :bprevious<cr>
|
||||
|
@ -192,6 +196,9 @@
|
|||
auto_restore_enabled = true;
|
||||
}
|
||||
require("bufferline").setup{}
|
||||
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
require("nvim-tree").setup()
|
||||
|
||||
require('lspconfig').gopls.setup{}
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"cat" = "bat --theme=TwoDark --style=plain";
|
||||
"watch" = "watch "; # https://unix.stackexchange.com/a/25329
|
||||
"kge" = "kubectl get events --sort-by='.lastTimestamp'";
|
||||
"devcontainer" = "docker compose -f docker-compose.yml -f .devcontainer/docker-compose.yml"; # Poor mans devcontainer
|
||||
};
|
||||
initExtra = ''
|
||||
setopt APPEND_HISTORY # Append history to global histfile on exit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue