This commit is contained in:
Nikos Papadakis 2023-05-24 12:44:09 +03:00
parent 68a79b3b12
commit d83f895351
Signed by untrusted user who does not match committer: nikos
GPG key ID: 78871F9905ADFF02
8 changed files with 36 additions and 16 deletions

View file

@ -3,7 +3,7 @@ if not ok then
return
end
vim.g.catppuccin_flavour = "latte" -- latte, frappe, macchiato, mocha
vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
catppuccin.setup {
compile = {

View file

@ -0,0 +1,24 @@
local ok, oil = pcall(require, "oil")
if not ok then
return
end
oil.setup {
keymaps = {
["g?"] = "actions.show_help",
["<CR>"] = "actions.select",
["<C-v>"] = "actions.select_vsplit",
["<C-s>"] = "actions.select_split",
["<C-t>"] = "actions.select_tab",
["<C-p>"] = "actions.preview",
["<C-c>"] = "actions.close",
["r"] = "actions.refresh",
["-"] = "actions.parent",
["_"] = "actions.open_cwd",
["`"] = "actions.cd",
["~"] = "actions.tcd",
["g."] = "actions.toggle_hidden",
},
use_default_keymaps = false,
}

View file

@ -8,9 +8,9 @@ treesitter.setup {
enable = true,
additional_vim_regex_highlighting = false,
},
-- indent = {
-- enable = { "php" },
-- },
indent = {
enable = false,
},
textobjects = {
select = {
enable = true,

View file

@ -1 +0,0 @@
/home/nikos/.dotfiles/nvim/dot-config/nvim/after/queries/html_tags/highlights.scm

View file

@ -1,6 +0,0 @@
;; extends
(attribute
(attribute_name) @name (#eq? @name "class")
(quoted_attribute_value) @comment
)

View file

@ -6,7 +6,9 @@ Configuration Home: https://github.com/esprssoo/dotfiles
--]]
vim.g.mapleader = " "
vim.g.netrw_banner = 0
-- vim.g.netrw_banner = 0
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
require "my.plugins"
require "my.options"

View file

@ -19,15 +19,16 @@ end
require "paq" {
"savq/paq-nvim",
"nvim-lua/plenary.nvim",
{ "nvim-telescope/telescope.nvim", branch = "0.1.x" },
{ "catppuccin/nvim", as = "catppuccin" },
"lewis6991/gitsigns.nvim",
"kyazdani42/nvim-web-devicons",
"lukas-reineke/indent-blankline.nvim",
"nvim-lualine/lualine.nvim",
"windwp/nvim-autopairs",
"mickael-menu/zk-nvim",
"williamboman/mason.nvim",
{ "nvim-telescope/telescope.nvim", branch = "0.1.x" },
{ "catppuccin/nvim", as = "catppuccin" },
{ "williamboman/mason.nvim", branch = "v1.0.1" },
"stevearc/oil.nvim",
-- Treesitter
{ "nvim-treesitter/nvim-treesitter", run = vim.cmd.TSUpdate, branch = "v0.9.0" },

View file

@ -4,7 +4,7 @@ return {
font = wezterm.font 'JetBrainsMono Nerd Font Mono',
-- freetype_load_target = 'Light',
-- freetype_render_target = 'HorizontalLcd',
color_scheme = 'Catppuccin Frappe',
color_scheme = 'Catppuccin Mocha',
window_background_opacity = 0.9,
max_fps = 165,
front_end = "WebGpu",