1 Commits

Author SHA1 Message Date
kankys e4117b7d4e Initial commit 2025-02-05 14:48:40 +00:00
7 changed files with 4 additions and 109 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2025 Kankys - Lukáš Kaňka
Copyright (c) 2025 kankys
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+3
View File
@@ -0,0 +1,3 @@
# ApolloNvim2025
Programování je mnohem zábavnější, když jste efektivní. Neovim vás tam může časem dostat, ale musíte být ochotni zkoušet nové věci. Nové pluginy, nové remapy atd.
-20
View File
@@ -1,20 +0,0 @@
{
"coc.preferences.formatOnSaveFiletypes": ["php"],
"php.suggest.basic": true,
"php.validate.enable": true,
"php.format.enable": true
}
{
"coc.preferences.formatOnSaveFiletypes": ["javascript", "javascriptreact", "typescript", "typescriptreact", "css", "scss", "less", "html", "json", "markdown", "graphql", "yaml"],
"prettier.enable": true,
"prettier.configPath": "",
"prettier.requireConfig": false,
"prettier.singleQuote": true,
"prettier.semi": true,
"prettier.tabWidth": 2,
"prettier.useTabs": false,
"prettier.printWidth": 80,
"prettier.bracketSpacing": true,
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "lf"
}
-82
View File
@@ -1,82 +0,0 @@
set number " zobrazí čísla řádků
set wrap " zalomí kód na řádku
set cursorline " zvýraznění řádku s kurzorem
set noshowmode
set title " zobrazí název a cestu souboru
set clipboard=unnamedplus " povolí kopírování a vkládání mimo Neovim
set signcolumn=yes " zajistí number a gitgutter vedle sebe
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
" Přidání klávesové zkratky pro potvrzení nápovědy kódu
imap <silent><expr> <TAB> coc#pum#visible() ? coc#pum#confirm() : "\<TAB>"
Plug 'm4xshen/autoclose.nvim' " AutocloseTag (lua)
Plug 'https://github.com/scrooloose/nerdtree' " NERDTree postraní panel
Plug 'neoclide/coc.nvim', {'branch': 'release'} "Coc balíčkovací systém
Plug 'mhinz/vim-startify' " Alternativní startovací obrazovka
Plug 'Pocco81/auto-save.nvim' " Autosave
Plug 'akinsho/toggleterm.nvim', {'tag' : '*'} "Terminal
" Theme
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'Tsuzat/NeoSolarized.nvim', { 'branch': 'master' }
Plug 'bluz71/vim-moonfly-colors', { 'as': 'moonfly' }
Plug 'ghifarit53/tokyonight-vim'
Plug 'morhetz/gruvbox'
Plug 'joshdick/onedark.vim'
Plug 'sainnhe/sonokai'
Plug 'sainnhe/edge'
Plug 'vim-airline/vim-airline'
Plug 'projekt0n/github-nvim-theme'
Plug 'bluz71/vim-nightfly-colors', { 'as': 'nightfly' }
Plug 'xero/miasma.nvim'
Plug 'sts10/vim-pink-moon'
Plug 'gilgigilgil/anderson.vim'
Plug 'jacoborus/tender.vim'
Plug 'nordtheme/vim'
call plug#end()
" Nastavení lua pluginů ve vlastních souborech
lua require('space-user')
" Automatické instalování pluginů
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Autostart NERDTree
" autocmd VimEnter * call NERDTreeFocus() " Autostart NERDTreeFocus
" Atomaticky po startu theme
colorscheme dracula
autocmd VimEnter * colorscheme github_dark
" Autosave
let g:auto_save_enabled = 1
let g:auto_save_delay = 3000
let g:auto_save_events = ['InsertLeave', 'TextChanged']
-1
View File
@@ -1 +0,0 @@
require("autoclose").setup()
-2
View File
@@ -1,2 +0,0 @@
require('space-user/autoclosetag')
require('space-user/toggleterm')
-3
View File
@@ -1,3 +0,0 @@
require("toggleterm").setup(
)